aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlinma (ThinLinc team) <70215710+LMattsson@users.noreply.github.com>2024-08-27 11:15:57 +0200
committerGitHub <noreply@github.com>2024-08-27 11:15:57 +0200
commit4e836a1bfca77c2a20199b2a8675093140d203f1 (patch)
treea2e941d57d28b654d81b3ba95bbe26e4f48a5863
parent3979e3cdc855c9099b3b67bfaaff277d7b7953f2 (diff)
parent7a70cedfc1a76ccf99d98a108e5710cb8b99fec3 (diff)
downloadtigervnc-4e836a1bfca77c2a20199b2a8675093140d203f1.tar.gz
tigervnc-4e836a1bfca77c2a20199b2a8675093140d203f1.zip
Merge pull request #1825 from LMattsson/macos-minimize-fixme
Add FIXME comment regarding macOS minimise fix
-rw-r--r--vncviewer/Viewport.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vncviewer/Viewport.cxx b/vncviewer/Viewport.cxx
index ed5f9899..ad7a6e8d 100644
--- a/vncviewer/Viewport.cxx
+++ b/vncviewer/Viewport.cxx
@@ -1316,6 +1316,8 @@ void Viewport::popupContextMenu()
break;
case ID_MINIMIZE:
#ifdef __APPLE__
+ // FIXME: Workaround for not being able to minimize in fullscreen
+ // https://github.com/TigerVNC/tigervnc/pull/1813
if (window()->fullscreen_active())
window()->fullscreen_off();
#endif