Skip to content

Commit

Permalink
Merge pull request #4267 from IllianiCBT/turnover_arrowFix
Browse files Browse the repository at this point in the history
Replaced Non-Universal ASCII Arrow with Braces in Turnover Dialog
  • Loading branch information
IllianiCBT authored Jun 22, 2024
2 parents 93f1d42 + df6b606 commit d3da467
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MekHQ/src/mekhq/gui/dialog/RetirementDefectionDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -365,11 +365,11 @@ private void initComponents(boolean doRetirement) {
panResults.add(scroll);
JPanel panAddRemoveBtns = new JPanel();
panAddRemoveBtns.setLayout(new BoxLayout(panAddRemoveBtns, BoxLayout.Y_AXIS));
btnAddUnit = new JButton("");
btnAddUnit = new JButton("<<<");
btnAddUnit.setEnabled(false);
btnAddUnit.addActionListener(ev -> addUnit());
panAddRemoveBtns.add(btnAddUnit);
btnRemoveUnit = new JButton("");
btnRemoveUnit = new JButton(">>>");
btnRemoveUnit.setEnabled(false);
btnRemoveUnit.addActionListener(ev -> removeUnit());
panAddRemoveBtns.add(btnRemoveUnit);
Expand Down

0 comments on commit d3da467

Please sign in to comment.