Skip to content

Commit

Permalink
Rename repair playlist entries in context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Sep 24, 2023
1 parent 9a9c96a commit 1a788d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/listfix/view/controls/PlaylistEditCtrl.java
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,6 @@ private void initComponents()
_playlistEntryRightClickMenu.add(_miReplace);
_playlistEntryRightClickMenu.add(jSeparator3);

_miFindClosest.setText("Repair playlist");
_miFindClosest.addActionListener(evt -> findClosestMatches());
_playlistEntryRightClickMenu.add(_miFindClosest);
_playlistEntryRightClickMenu.add(jSeparator4);
Expand Down Expand Up @@ -1464,9 +1463,11 @@ else if ((isOverItem && _uiTable.getSelectedRowCount() == 0)
_miReplace.setText("Replace Selected Entries");
_miEditFilename.setText("Edit Filenames");
_miOpenFileLocation.setText(txtOpenFileLocationPlural);
_miFindClosest.setText("Repair Selected Entries");
}
else
{
_miFindClosest.setText("Repair Selected Entry");
_miEditFilename.setText("Edit Filename");
_miReplace.setText("Replace Selected Entry");
_miOpenFileLocation.setText(txtOpenFileLocationSingular);
Expand Down

0 comments on commit 1a788d9

Please sign in to comment.