Skip to content

Commit

Permalink
Update SettingsWindow.java (#12999)
Browse files Browse the repository at this point in the history
Rename button from "Settings" to "Engine Preferences"
  • Loading branch information
frigoref authored Nov 16, 2024
1 parent d439cc8 commit a01f973
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void close() {
public void open(final Frame owner) {
Preconditions.checkState(SwingUtilities.isEventDispatchThread());
if (dialog == null) {
dialog = new JDialog(owner, "Settings");
dialog = new JDialog(owner, "Engine Preferences");
dialog.setContentPane(newContentPane());
dialog.setMinimumSize(new Dimension(400, 50));
dialog.pack();
Expand Down

0 comments on commit a01f973

Please sign in to comment.