Skip to content

Commit

Permalink
Avoid duplicate INT signal on windows, fixes #199
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Jan 8, 2018
1 parent 2fa2efc commit 2e31b52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ protected void processKeyEvent(final boolean isKeyDown, final short virtualKeyCo
}
}
}
} else if (ch == '\3') {
} else if (isKeyDown && ch == '\3') {
processInputChar('\3');
}
// key up event
Expand Down

0 comments on commit 2e31b52

Please sign in to comment.