Codebase list kwindowsystem / 10c5be8
Apply "Allow Tab as being modified by Shift" (4fe25b7) Add upstream patch as: Allow-Tab-as-being-modified-by-Shift.patch This fixes KDE#368581, and is related to #794501 Gbp-Dch: Full Maximiliano Curia 7 years ago
2 changed file(s) with 30 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Roman Gilg <subdiff@gmail.com>
1 Date: Sun, 15 Jan 2017 15:23:27 +0100
2 Subject: Allow Tab as being modified by Shift
3
4 Backtab was already in the list of allowed keys, but not Tab,
5 which happens to get queried though. In the case of bug 368581 when
6 walking in reverse direction of windows by pressing Alt+Shift+Tab.
7
8 BUG: 368581
9
10 Reviewers: graesslin
11
12 Differential Revision: https://phabricator.kde.org/D4141
13 ---
14 src/kkeyserver.cpp | 1 +
15 1 file changed, 1 insertion(+)
16
17 diff --git a/src/kkeyserver.cpp b/src/kkeyserver.cpp
18 index c005456..811fb4e 100644
19 --- a/src/kkeyserver.cpp
20 +++ b/src/kkeyserver.cpp
21 @@ -125,6 +125,7 @@ bool isShiftAsModifierAllowed(int keyQt)
22 case Qt::Key_Return:
23 case Qt::Key_Space:
24 case Qt::Key_Backspace:
25 + case Qt::Key_Tab:
26 case Qt::Key_Backtab:
27 case Qt::Key_Escape:
28 case Qt::Key_Print:
0 Allow-Tab-as-being-modified-by-Shift.patch