Skip to content

Commit

Permalink
Fix label of "Open (folder)" button to add a space before the folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
metaprime committed Jan 2, 2025
1 parent 5893177 commit fac3f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/rarchives/ripme/ui/MainWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -1543,7 +1543,7 @@ private synchronized void handleEvent(StatusEvent evt) {
openButton.setVisible(true);
Path f = rsc.dir;
String prettyFile = Utils.shortenPath(f);
openButton.setText(Utils.getLocalizedString("open") + prettyFile);
openButton.setText(Utils.getLocalizedString("open") + " " + prettyFile);
mainFrame.setTitle("RipMe v" + UpdateUtils.getThisJarVersion());
try {
Image folderIcon = ImageIO.read(getClass().getClassLoader().getResource("folder.png"));
Expand Down

0 comments on commit fac3f8e

Please sign in to comment.