Skip to content

Commit

Permalink
Version 1.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmanusta committed Oct 14, 2023
1 parent 6f78165 commit bce0efb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/kodedu/component/EditorPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
import static java.util.Objects.isNull;
import static java.util.Objects.nonNull;
import static javafx.scene.input.KeyEvent.KEY_RELEASED;
import static javafx.scene.input.KeyEvent.KEY_TYPED;

/**
* Created by usta on 09.04.2015.
Expand Down Expand Up @@ -782,7 +783,7 @@ public ShortCutConfigBean getShortCutConfigBean() {
keyCombination = null;
return;
}
} else {
} else if (e.getEventType() == KEY_TYPED) {
// Skip key_type ?
e.consume();
if (getShortCutConfigBean().isDebugMode()) {
Expand Down

0 comments on commit bce0efb

Please sign in to comment.