Button: fixed behavior of Enter key on focused button on Windows and Linux, which now clicks the focused button (instead of the default button)

This commit is contained in:
Karl Tauber
2021-01-30 00:37:20 +01:00
parent dc570c683a
commit 036090a947
4 changed files with 19 additions and 5 deletions

View File

@@ -44,10 +44,12 @@ class NewDialog
}
private void okActionPerformed() {
System.out.println( "ok" );
dispose();
}
private void cancelActionPerformed() {
System.out.println( "cancel" );
dispose();
}