Skip to content

Commit 747a745

Browse files
committed
Update screenshots, small UI corrections.
1 parent 3f2e986 commit 747a745

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# NS-USBloader
22

3-
![License](https://img.shields.io/badge/License-GPLv3-blue.svg) ![Releases](https://img.shields.io/github/downloads/developersu/ns-usbloader/total.svg) ![LatestVer](https://img.shields.io/github/release/developersu/ns-usbloader.svg)
4-
3+
![License](https://img.shields.io/badge/License-GPLv3-blue.svg) ![Releases](https://img.shields.io/github/downloads/developersu/ns-usbloader/total.svg) ![LatestVer](https://img.shields.io/github/release/developersu/ns-usbloader.svg) ![CI](https://img.shields.io/jenkins/build?jobUrl=https%3A%2F%2Fredrise.ru%2Fjen%2Fjob%2Fns-usbloader%2Fjob%2Fmaster%2F)
54
[Support author](#support-this-app)
65

76
NS-USBloader is:
@@ -47,7 +46,7 @@ Sometimes I add new posts about this project [on my home page](https://developer
4746
* Chinese (Simplified) by [Huang YunKun (htynkn)](https://github.com/htynkn), [exiori](https://github.com/exiori)
4847
* German by [Swarsele](https://github.com/Swarsele)
4948
* Vietnamese by [Hai Phan Nguyen (pnghai)](https://github.com/pnghai)
50-
* Czech by [Spenaat](https://github.com/spenaat)
49+
* Czech by [Spenaat](https://github.com/spenaat)r
5150
* Chinese (Traditional) by [qazrfv1234](https://github.com/qazrfv1234)
5251
* Arabic by [eslamabdel](https://github.com/eslamabdel)
5352
* Romanian by [Călin Ilie](https://github.com/calini)

screenshots/3.png

12.1 KB
Loading

screenshots/4.png

26 KB
Loading

src/main/java/nsusbloader/Controllers/SplitMergeController.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ public void initialize(URL url, ResourceBundle resourceBundle) {
9494
else
9595
mergeRad.fire();
9696

97-
saveToPathLbl.setText(AppPreferences.getInstance().getSplitMergeRecent());
97+
String previouslyUsedSaveToPath = AppPreferences.getInstance().getSplitMergeRecent();
98+
99+
saveToPathLbl.setText(FilesHelper.getRealFolder(previouslyUsedSaveToPath));
98100

99101
changeSaveToBtn.setOnAction((actionEvent -> {
100102
DirectoryChooser directoryChooser = new DirectoryChooser();

src/main/resources/SplitMergeTab.fxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</VBox.margin>
6060
</Button>
6161
<Label text="%tabSplMrg_Lbl_SaveToLocation" />
62-
<Label fx:id="saveToPathLbl" maxWidth="200.0" textOverrun="CENTER_WORD_ELLIPSIS" />
62+
<Label fx:id="saveToPathLbl" maxWidth="-Infinity" prefWidth="175.0" textOverrun="CENTER_WORD_ELLIPSIS" />
6363
<Button fx:id="changeSaveToBtn" contentDisplay="TOP" mnemonicParsing="false" text="%tabSplMrg_Btn_ChangeSaveToLocation" />
6464
<Pane VBox.vgrow="ALWAYS" />
6565
<VBox>

0 commit comments

Comments
 (0)