Skip to content

Commit

Permalink
OnScreenKeyboard: cleaned up lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
bwRavencl committed Sep 16, 2023
1 parent 04745f2 commit b53abdb
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,7 @@ public void setVisible(final boolean b) {
}
}

EventQueue.invokeLater(() -> {
super.setVisible(b);
});
EventQueue.invokeLater(() -> super.setVisible(b));
}

public void toggleLock() {
Expand Down

0 comments on commit b53abdb

Please sign in to comment.