Skip to content

Commit

Permalink
perf: follow ellipsis ui convention
Browse files Browse the repository at this point in the history
  • Loading branch information
bogovicj committed Nov 12, 2024
1 parent 3fd74b3 commit 0675f79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/bigwarp/BigWarp.java
Original file line number Diff line number Diff line change
Expand Up @@ -1543,15 +1543,15 @@ protected void setUpLandmarkMenus()
final JMenuBar landmarkMenuBar = new JMenuBar();
fileMenu = new JMenu( "File" );
final JMenuItem openItem = new JMenuItem( actionMap.get( BigWarpActions.LOAD_LANDMARKS ) );
openItem.setText( "Import landmarks" );
openItem.setText( "Import landmarks..." );
fileMenu.add( openItem );

final JMenuItem saveItem = new JMenuItem( actionMap.get( BigWarpActions.SAVE_LANDMARKS ));
saveItem.setText( "Export landmarks" );
saveItem.setText( "Export landmarks..." );
fileMenu.add( saveItem );

fileMenu.addSeparator();
final JMenuItem exportImageItem = new JMenuItem( "Export Moving Image" );
final JMenuItem exportImageItem = new JMenuItem( "Export Moving Image..." );

landmarkMenuBar.add( fileMenu );
landmarkFrame.setJMenuBar( landmarkMenuBar );
Expand All @@ -1563,7 +1563,7 @@ protected void setUpLandmarkMenus()

final JMenu landmarkMenu = new JMenu( "Landmarks" );
final JMenuItem landmarkGridItem = new JMenuItem( actionMap.get( BigWarpActions.LANDMARK_GRID_DIALOG ) );
landmarkGridItem.setText( "Build landmark grid" );
landmarkGridItem.setText( "Build landmark grid..." );
landmarkMenu.add( landmarkGridItem );

landmarkMenuBar.add( landmarkMenu );
Expand Down

0 comments on commit 0675f79

Please sign in to comment.