From 9c23b52c1e6a77db4aa6b49b20d9b85690249d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 6 Feb 2014 18:33:50 +0100 Subject: [PATCH] window-list: Update keyboard position on fullscreen changes The visibility of the window list changes when a monitor enters or exits fullscreen, so we should update the OSK position accordingly. https://bugzilla.gnome.org/show_bug.cgi?id=723693 --- extensions/window-list/extension.js | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js index ad914fb5..fed19158 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -786,6 +786,7 @@ const WindowList = new Lang.Class({ this._fullscreenChangedId = global.screen.connect('in-fullscreen-changed', Lang.bind(this, function() { + this._updateKeyboardAnchor(); this._updateMessageTrayAnchor(); }));