diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-04-09 04:36:26 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-04-10 00:47:03 -0700 |
commit | 8d5dcfe2154f217bd8fde5509d78f3383add8725 (patch) | |
tree | b599bcfe36f87fb95e3bef9dc1b0e92568258287 /hw | |
parent | 82d7cf5cdcbc5e451a87f8c2f64cd5d2e3627d54 (diff) |
XQuartz: Properly set the menu bar and hotkey state when changing rootless mode.
Currently no code path exhibits the broken behavior since we only toggle into rootless if we don't have the root.
(cherry picked from commit 970f100ca3c5fc0662ae7658d49d118fbd9de943)
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xquartz/quartz.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/hw/xquartz/quartz.c b/hw/xquartz/quartz.c index 0de63b642..344edec54 100644 --- a/hw/xquartz/quartz.c +++ b/hw/xquartz/quartz.c @@ -352,13 +352,20 @@ void QuartzSetRootless(Bool state) { /* When in rootless, the menubar is not part of the screen, so we need to update our screens on toggle */ QuartzUpdateScreens(); - if (!quartzEnableRootless && !quartzHasRoot) { - RootlessHideAllWindows(); - } else if (quartzEnableRootless && !quartzHasRoot) { - RootlessShowAllWindows(); + if(!quartzHasRoot) { + if(!quartzEnableRootless) { + RootlessHideAllWindows(); + } else { + RootlessShowAllWindows(); + } } + X11ApplicationShowHideMenubar(!quartzHasRoot); + xp_reenable_update(); + + if (!quartzEnableRootless && quartzFullscreenDisableHotkeys) + xp_disable_hot_keys(quartzHasRoot); } /* |