mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-23 22:14:06 +02:00
Fix label of "Open (folder)" button to add a space before the folder.
This commit is contained in:
@@ -1543,7 +1543,7 @@ public final class MainWindow implements Runnable, RipStatusHandler {
|
|||||||
openButton.setVisible(true);
|
openButton.setVisible(true);
|
||||||
Path f = rsc.dir;
|
Path f = rsc.dir;
|
||||||
String prettyFile = Utils.shortenPath(f);
|
String prettyFile = Utils.shortenPath(f);
|
||||||
openButton.setText(Utils.getLocalizedString("open") + prettyFile);
|
openButton.setText(Utils.getLocalizedString("open") + " " + prettyFile);
|
||||||
mainFrame.setTitle("RipMe v" + UpdateUtils.getThisJarVersion());
|
mainFrame.setTitle("RipMe v" + UpdateUtils.getThisJarVersion());
|
||||||
try {
|
try {
|
||||||
Image folderIcon = ImageIO.read(getClass().getClassLoader().getResource("folder.png"));
|
Image folderIcon = ImageIO.read(getClass().getClassLoader().getResource("folder.png"));
|
||||||
|
Reference in New Issue
Block a user