loginDialog: Remove the correct focus root from ctrl-alt-tab

Commit 3abfcda8b5 fixed the focus root passed to addGroup(),
but left the one in removeGroup() unchanged.

https://bugzilla.gnome.org/show_bug.cgi?id=688181
This commit is contained in:
Florian Müllner 2012-11-10 19:40:55 +01:00
parent 68e011d4cb
commit 09b897369d

View File

@ -1225,6 +1225,6 @@ const LoginDialog = new Lang.Class({
close: function() {
this.parent();
Main.ctrlAltTabManager.removeGroup(this._group);
Main.ctrlAltTabManager.removeGroup(this.dialogLayout);
}
});