Skip to content

Commit d6bfe27

Browse files
committed
Fix bug where C-X didn't work
Fixes #5
1 parent 8e0699e commit d6bfe27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/the/bytecode/club/jda/gui/MainViewerGUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public boolean dispatchKeyEvent(KeyEvent e)
146146
keyStates.put(key, true);
147147
JDA.checkHotKey(e);
148148
}
149-
return true;
149+
return false;
150150
}
151151
else if (e.getID() == KeyEvent.KEY_RELEASED)
152152
{

0 commit comments

Comments
 (0)