Skip to content

Commit

Permalink
Changed ordering of cancel and ok button #3781
Browse files Browse the repository at this point in the history
  • Loading branch information
de-jcup committed Jan 13, 2025
1 parent 0c7d822 commit e7109c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ private JPanel createButtonPanel() {
okButton = new JButton("Ok");
okButton.addActionListener(this::okPressed);

buttonPanel.add(cancelButton);
buttonPanel.add(okButton);
buttonPanel.add(cancelButton);
return buttonPanel;
}

Expand Down

0 comments on commit e7109c9

Please sign in to comment.