Skip to content

Commit

Permalink
fix tooltip for help button
Browse files Browse the repository at this point in the history
  • Loading branch information
creme332 committed Jun 22, 2024
1 parent c2043c6 commit cea2936
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/github/creme332/view/MenuBar.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public MenuBar(MenuModel[] menus) throws InvalidIconSizeException, InvalidPathEx
guidelinesButton.setIcon(FontIcon.of(BootstrapIcons.GRID_3X3, 37));
guidelinesButton.setBorderPainted(false);
leftPanel.add(guidelinesButton);
guidelinesButton.setToolTipText("Guidelines");
guidelinesButton.setToolTipText("Toggle guidelines");

// toggle axes button
toggleAxesButton = new JButton();
Expand All @@ -77,7 +77,7 @@ public MenuBar(MenuModel[] menus) throws InvalidIconSizeException, InvalidPathEx
helpButton = new JButton();
helpButton.setIcon(FontIcon.of(BootstrapIcons.QUESTION_CIRCLE, 37));
helpButton.setBorderPainted(false);
helpButton.setToolTipText("Toggle axes");
helpButton.setToolTipText("Help");
leftPanel.add(helpButton);

// export button
Expand Down

0 comments on commit cea2936

Please sign in to comment.