We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a77a1c commit 32c8e33Copy full SHA for 32c8e33
src/gui/Src/BasicView/ShortcutEdit.cpp
@@ -63,10 +63,6 @@ void ShortcutEdit::keyPressEvent(QKeyEvent* event)
63
}
64
65
66
- // replace Backtab with Shift+Tab
67
- if((keyInt & Qt::Key_Backtab) == Qt::Key_Backtab)
68
- keyInt = (keyInt & ~Qt::Key_Backtab) | Qt::SHIFT | Qt::Key_Tab;
69
-
70
// display key combination
71
setText(QKeySequence(keyInt).toString(QKeySequence::NativeText));
72
// do not forward keypress-event
0 commit comments