[gnome-shell] altTab: Allow pressing uppercase keys to close apps and windows
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] altTab: Allow pressing uppercase keys to close apps and windows
- Date: Fri, 17 Jan 2020 14:39:41 +0000 (UTC)
commit efd6be60e3660a31f0a508bd6fa686e6781763c5
Author: Jonas Dreßler <verdre v0yd nl>
Date: Mon May 21 10:32:52 2018 +0200
altTab: Allow pressing uppercase keys to close apps and windows
Right now only pressing "w" and "q" will close a window or an app, don't
confuse people who have caps-lock enabled or are holding down shift.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/168
js/ui/altTab.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/js/ui/altTab.js b/js/ui/altTab.js
index 06b8d79744..0130fa245d 100644
--- a/js/ui/altTab.js
+++ b/js/ui/altTab.js
@@ -175,7 +175,7 @@ class AppSwitcherPopup extends SwitcherPopup.SwitcherPopup {
this._select(this._next());
} else if (action == Meta.KeyBindingAction.SWITCH_APPLICATIONS_BACKWARD) {
this._select(this._previous());
- } else if (keysym === Clutter.KEY_q) {
+ } else if (keysym == Clutter.KEY_q || keysym === Clutter.KEY_Q) {
this._quitApplication(this._selectedIndex);
} else if (this._thumbnailsFocused) {
if (keysym === Clutter.KEY_Left)
@@ -184,7 +184,7 @@ class AppSwitcherPopup extends SwitcherPopup.SwitcherPopup {
this._select(this._selectedIndex, this._nextWindow());
else if (keysym === Clutter.KEY_Up)
this._select(this._selectedIndex, null, true);
- else if (keysym === Clutter.KEY_w || keysym === Clutter.KEY_F4)
+ else if (keysym === Clutter.KEY_w || keysym === Clutter.KEY_W || keysym === Clutter.KEY_F4)
this._closeAppWindow(this._selectedIndex, this._currentWindow);
else
return Clutter.EVENT_PROPAGATE;
@@ -587,7 +587,7 @@ class WindowSwitcherPopup extends SwitcherPopup.SwitcherPopup {
this._select(this._previous());
else if (keysym == Clutter.KEY_Right)
this._select(this._next());
- else if (keysym == Clutter.KEY_w || keysym == Clutter.KEY_F4)
+ else if (keysym === Clutter.KEY_w || keysym === Clutter.KEY_W || keysym === Clutter.KEY_F4)
this._closeWindow(this._selectedIndex);
else
return Clutter.EVENT_PROPAGATE;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]