switcherPopup: Improve modifier-less keybinding navigation
Commit c899453800
lifted the requirement of switcher keybindings
to contain a modifier, however it is currently only possible to
finish it by letting it time out.
Improve that by also accepting space/enter key presses to confirm the
selection immediately.
https://gitlab.gnome.org/GNOME/gnome-shell/issues/1883
This commit is contained in:
parent
998fe58482
commit
d52b23dec3
@ -186,6 +186,14 @@ var SwitcherPopup = GObject.registerClass({
|
||||
if (keysym === Clutter.KEY_Escape || keysym === Clutter.KEY_Tab)
|
||||
this.fadeAndDestroy();
|
||||
|
||||
// Allow to explicitly select the current item; this is particularly
|
||||
// useful for no-modifier popups
|
||||
if (keysym === Clutter.KEY_space ||
|
||||
keysym === Clutter.KEY_Return ||
|
||||
keysym === Clutter.KEY_KP_Enter ||
|
||||
keysym === Clutter.KEY_ISO_Enter)
|
||||
this._finish(keyEvent.time);
|
||||
|
||||
return Clutter.EVENT_STOP;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user