Change labels in the merge settings

Change labels in the merge settings to make it clearer, that the merge
directory also affects the manual merge
This commit is contained in:
0xboobface 2018-08-29 14:03:43 +02:00
parent 154995a760
commit 13c5bdfd40
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ public class SettingsTab extends Tab implements TabSelectionListener {
GridPane.setMargin(automerge, new Insets(0, 0, 0, CHECKBOX_MARGIN));
mergeLayout.add(automerge, 1, 0);
l = new Label("Keep segments");
l = new Label("Keep segments after auto-merge");
mergeLayout.add(l, 0, 1);
automergeKeepSegments.setSelected(Config.getInstance().getSettings().automergeKeepSegments);
automergeKeepSegments.setOnAction((e) -> Config.getInstance().getSettings().automergeKeepSegments = automergeKeepSegments.isSelected());
@ -218,7 +218,7 @@ public class SettingsTab extends Tab implements TabSelectionListener {
mergeLayout.add(mergeDirectory, 1, 2);
mergeLayout.add(createMergeDirButton(), 3, 2);
mergePane = new TitledPane("Auto-merge", mergeLayout);
mergePane = new TitledPane("Merging", mergeLayout);
mergePane.setCollapsible(false);
mainLayout.add(mergePane, 0, 3);