From 09b897369d93ba254136af5dd3d027a7c8f7145c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 10 Nov 2012 19:40:55 +0100 Subject: [PATCH] loginDialog: Remove the correct focus root from ctrl-alt-tab Commit 3abfcda8b5998d10 fixed the focus root passed to addGroup(), but left the one in removeGroup() unchanged. https://bugzilla.gnome.org/show_bug.cgi?id=688181 --- js/gdm/loginDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js index 548d5d4df..81ccb54ea 100644 --- a/js/gdm/loginDialog.js +++ b/js/gdm/loginDialog.js @@ -1225,6 +1225,6 @@ const LoginDialog = new Lang.Class({ close: function() { this.parent(); - Main.ctrlAltTabManager.removeGroup(this._group); + Main.ctrlAltTabManager.removeGroup(this.dialogLayout); } });