Skip to content

Commit 32c8e33

Browse files
kdmamrexodia
authored andcommitted
Removed backtab key substitution
Fixing issue x64dbg#2176
1 parent 0a77a1c commit 32c8e33

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/gui/Src/BasicView/ShortcutEdit.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ void ShortcutEdit::keyPressEvent(QKeyEvent* event)
6363
}
6464
}
6565

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-
7066
// display key combination
7167
setText(QKeySequence(keyInt).toString(QKeySequence::NativeText));
7268
// do not forward keypress-event

0 commit comments

Comments
 (0)