altTab: enable the switch_group keybinding action
Allows the user to bring up the Alt+Tab popup with the current application's window thumbnails selected. https://bugzilla.gnome.org/show_bug.cgi?id=639341
This commit is contained in:
@ -116,6 +116,7 @@ WindowManager.prototype = {
|
||||
this.setKeybindingHandler('switch_to_workspace_up', Lang.bind(this, this._showWorkspaceSwitcher));
|
||||
this.setKeybindingHandler('switch_to_workspace_down', Lang.bind(this, this._showWorkspaceSwitcher));
|
||||
this.setKeybindingHandler('switch_windows', Lang.bind(this, this._startAppSwitcher));
|
||||
this.setKeybindingHandler('switch_group', Lang.bind(this, this._startAppSwitcher));
|
||||
|
||||
Main.overview.connect('showing', Lang.bind(this, function() {
|
||||
for (let i = 0; i < this._dimmedWindows.length; i++)
|
||||
@ -520,7 +521,7 @@ WindowManager.prototype = {
|
||||
|
||||
let tabPopup = new AltTab.AltTabPopup();
|
||||
|
||||
if (!tabPopup.show(backwards))
|
||||
if (!tabPopup.show(backwards, binding == 'switch_group'))
|
||||
tabPopup.destroy();
|
||||
},
|
||||
|
||||
|
Reference in New Issue
Block a user