Explorar el Código

Update fullscreen window if changing fullScreenAllMonitors option

tags/v1.8.90
Peter Åstrand (astrand) hace 6 años
padre
commit
a890572b8d
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. 5
    2
      vncviewer/DesktopWindow.cxx

+ 5
- 2
vncviewer/DesktopWindow.cxx Ver fichero

@@ -762,7 +762,8 @@ void DesktopWindow::fullscreen_on()
fullscreen_screens(top, bottom, left, right);
}

fullscreen();
if (!fullscreen_active())
fullscreen();
}

void DesktopWindow::grabKeyboard()
@@ -1186,7 +1187,9 @@ void DesktopWindow::handleOptions(void *data)
else
self->ungrabKeyboard();

if (fullScreen && !self->fullscreen_active())
// Call fullscreen_on even if active since it handles
// fullScreenAllMonitors
if (fullScreen)
self->fullscreen_on();
else if (!fullScreen && self->fullscreen_active())
self->fullscreen_off();

Cargando…
Cancelar
Guardar