1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-01-29 10:38:14 +01:00

Fix label of "Open (folder)" button to add a space before the folder.

This commit is contained in:
MetaPrime 2025-01-02 02:57:37 -08:00
parent 589317732d
commit fac3f8ea0f

View File

@ -1543,7 +1543,7 @@ public final class MainWindow implements Runnable, RipStatusHandler {
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"));