Skip to content

Commit

Permalink
fix #248
Browse files Browse the repository at this point in the history
  • Loading branch information
optyfr committed Dec 28, 2023
1 parent c34a7d2 commit fcfcab4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Release v3.0.0 beta 14
- Fixes

## Release v3.0.0 beta 13
- Jetty 12
- Fixes
Expand Down
1 change: 1 addition & 0 deletions changelogs/3.0.0-beta.14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixes
2 changes: 1 addition & 1 deletion jrmfx/src/main/java/jrm/fx/ui/ScannerPanelController.java
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ private void initProfileSettings(Session session)
samplesDest.setText(session.getCurrProfile().getProperty(ProfileSettingsEnum.samples_dest_dir)); //$NON-NLS-1$ //$NON-NLS-2$
backupDestCB.setSelected(session.getCurrProfile().getProperty(ProfileSettingsEnum.backup_dest_dir_enabled, Boolean.class)); //$NON-NLS-1$
backupDest.setText(session.getCurrProfile().getProperty(ProfileSettingsEnum.backup_dest_dir)); //$NON-NLS-1$ //$NON-NLS-2$
srcList.setItems(FXCollections.observableList(Stream.of(StringUtils.split(session.getCurrProfile().getProperty(ProfileSettingsEnum.src_dir),'|')).filter(s->!s.isEmpty()).map(File::new).toList()));
srcList.setItems(FXCollections.observableList(Stream.of(StringUtils.split(session.getCurrProfile().getProperty(ProfileSettingsEnum.src_dir),'|')).filter(s->!s.isEmpty()).map(File::new).collect(Collectors.toList())));

scannerPanelSettingsController.initProfileSettings(session.getCurrProfile().getSettings());

Expand Down

0 comments on commit fcfcab4

Please sign in to comment.