Skip to content

Commit

Permalink
Merge pull request #15118 from cjhetzle/master
Browse files Browse the repository at this point in the history
loottracker: reverse collapse all tooltips
  • Loading branch information
Adam- authored Jun 17, 2022
2 parents 9b65558 + 8e4d9c4 commit 93d6fa9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private JPanel buildActionsPanel()
SwingUtil.removeButtonDecorations(collapseBtn);
collapseBtn.setIcon(EXPAND_ICON);
collapseBtn.setSelectedIcon(COLLAPSE_ICON);
SwingUtil.addModalTooltip(collapseBtn, "Collapse All", "Un-Collapse All");
SwingUtil.addModalTooltip(collapseBtn, "Expand All", "Collapse All");
collapseBtn.setBackground(ColorScheme.DARKER_GRAY_COLOR);
collapseBtn.setUI(new BasicButtonUI()); // substance breaks the layout
collapseBtn.addActionListener(ev -> changeCollapse());
Expand Down

0 comments on commit 93d6fa9

Please sign in to comment.