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:
parent
589317732d
commit
fac3f8ea0f
@ -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"));
|
||||
|
Loading…
x
Reference in New Issue
Block a user