From f322e00ca545bdb3ea1fb2b4cf1cfbc5c498896d Mon Sep 17 00:00:00 2001 From: Sebastian Keller Date: Thu, 6 Jan 2022 04:53:23 +0100 Subject: [PATCH] windowManager: Set correct unfullscreen gesture enabled state on startup The unfullscreen gesture was defaulting to enabled until the first window focus change. With it now being run in the capture phase, the gesture was preventing clicks in the top panel except on the activities button before the first window was opened. Part-of: --- js/ui/windowManager.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js index 784f79393..d3bb15572 100644 --- a/js/ui/windowManager.js +++ b/js/ui/windowManager.js @@ -954,6 +954,7 @@ var WindowManager = class { global.display.connect('notify::focus-window', updateUnfullscreenGesture); global.display.connect('in-fullscreen-changed', updateUnfullscreenGesture); + updateUnfullscreenGesture(); global.stage.add_action_full('unfullscreen', Clutter.EventPhase.CAPTURE, topDragAction);