]> source.dussan.org Git - tigervnc.git/commitdiff
Don't move window in full-screen workaround
authorPierre Ossman <ossman@cendio.se>
Thu, 30 Dec 2021 12:03:46 +0000 (13:03 +0100)
committerPierre Ossman <ossman@cendio.se>
Thu, 30 Dec 2021 12:03:46 +0000 (13:03 +0100)
If this is done before the window is shown then it can accidentally
override the window manager's placement of the window. Reducing the size
should be sufficient to avoid trigger a full-screen request.

vncviewer/DesktopWindow.cxx

index cd1da5b58bae1c2dbc1cea9f2bad78145cd6babd..256d8ff83edf0247618bde8c6a70d03863825abf 100644 (file)
@@ -615,7 +615,6 @@ void DesktopWindow::resize(int x, int y, int w, int h)
         if ((sx == x) && (sy == y) && (sw == w) && (sh == h)) {
           vlog.info(_("Adjusting window size to avoid accidental full-screen request"));
           // Assume a panel of some form and adjust the height
-          y += 20;
           h -= 40;
         }
       }