diff --git a/js/ui/altTab.js b/js/ui/altTab.js index 139834029..c5a0a2ad1 100644 --- a/js/ui/altTab.js +++ b/js/ui/altTab.js @@ -154,8 +154,16 @@ AltTabPopup.prototype = { if (keysym == Clutter.Tab) this._updateSelection(backwards ? -1 : 1); + else if (keysym == Clutter.Left) + this._updateSelection(-1); + else if (keysym == Clutter.Right) + this._updateSelection(1); else if (keysym == Clutter.grave) this._updateWindowSelection(backwards ? -1 : 1); + else if (keysym == Clutter.Up) + this._updateWindowSelection(-1); + else if (keysym == Clutter.Down) + this._updateWindowSelection(1); else if (keysym == Clutter.Escape) this.destroy();