diff --git a/src/SyncTrayzor/Pages/SettingsView.xaml b/src/SyncTrayzor/Pages/SettingsView.xaml
index c2e399f9..7898f765 100644
--- a/src/SyncTrayzor/Pages/SettingsView.xaml
+++ b/src/SyncTrayzor/Pages/SettingsView.xaml
@@ -94,6 +94,9 @@
+
@@ -111,9 +114,6 @@
-
diff --git a/src/SyncTrayzor/Pages/SettingsViewModel.cs b/src/SyncTrayzor/Pages/SettingsViewModel.cs
index 320fc1d3..662fed7c 100644
--- a/src/SyncTrayzor/Pages/SettingsViewModel.cs
+++ b/src/SyncTrayzor/Pages/SettingsViewModel.cs
@@ -130,7 +130,7 @@ public bool StartMinimizedEnabled
public BindableCollection WatchedFolders { get; set; }
- public bool SyncthingUseCustomHome { get; set; }
+ public bool SyncthingUseDefaultHome { get; set; }
public string SyncThingEnvironmentalVariables { get; set; }
public bool SyncthingDenyUpgrade { get; set; }
@@ -175,7 +175,7 @@ public SettingsViewModel(
IsSelected = x.IsWatched
}));
- this.SyncthingUseCustomHome = configuration.SyncthingUseCustomHome;
+ this.SyncthingUseDefaultHome = !configuration.SyncthingUseCustomHome;
this.SyncThingEnvironmentalVariables = EnvironmentalVariablesParser.Format(configuration.SyncthingEnvironmentalVariables);
this.SyncthingDenyUpgrade = configuration.SyncthingDenyUpgrade;
}
@@ -216,7 +216,7 @@ public void Save()
}
configuration.Folders = this.WatchedFolders.Select(x => new FolderConfiguration(x.Folder, x.IsSelected)).ToList();
- configuration.SyncthingUseCustomHome = this.SyncthingUseCustomHome;
+ configuration.SyncthingUseCustomHome = !this.SyncthingUseDefaultHome;
EnvironmentalVariableCollection envVars;
EnvironmentalVariablesParser.TryParse(this.SyncThingEnvironmentalVariables, out envVars);
diff --git a/src/SyncTrayzor/Properties/Strings/Resources.Designer.cs b/src/SyncTrayzor/Properties/Strings/Resources.Designer.cs
index 85239e18..e6886fbb 100644
--- a/src/SyncTrayzor/Properties/Strings/Resources.Designer.cs
+++ b/src/SyncTrayzor/Properties/Strings/Resources.Designer.cs
@@ -627,20 +627,20 @@ public static string SettingsView_SyncthingRunLowPriority {
}
///
- /// Looks up a localized string similar to Use custom home directory for Syncthing..
+ /// Looks up a localized string similar to Use Syncthing's default database location.
///
- public static string SettingsView_SyncthingUseCustomHome {
+ public static string SettingsView_SyncthingUseDefaultHome {
get {
- return ResourceManager.GetString("SettingsView_SyncthingUseCustomHome", resourceCulture);
+ return ResourceManager.GetString("SettingsView_SyncthingUseDefaultHome", resourceCulture);
}
}
///
- /// Looks up a localized string similar to This will mean that SyncTrayzor will see a different set of configured folders to any other Syncthing instances on your computer..
+ /// Looks up a localized string similar to If unchecked, this will mean that SyncTrayzor will see a different set of configured folders to any other Syncthing instances on your computer..
///
- public static string SettingsView_SyncthingUseCustomHome_ToolTip {
+ public static string SettingsView_SyncthingUseDefaultHome_ToolTip {
get {
- return ResourceManager.GetString("SettingsView_SyncthingUseCustomHome_ToolTip", resourceCulture);
+ return ResourceManager.GetString("SettingsView_SyncthingUseDefaultHome_ToolTip", resourceCulture);
}
}
diff --git a/src/SyncTrayzor/Properties/Strings/Resources.resx b/src/SyncTrayzor/Properties/Strings/Resources.resx
index ef30fe4d..6dbb9a06 100644
--- a/src/SyncTrayzor/Properties/Strings/Resources.resx
+++ b/src/SyncTrayzor/Properties/Strings/Resources.resx
@@ -294,12 +294,12 @@
SyncTrayzor overrides the "GUI Listen Address" specified in Syncthing's configuration. However, you can set it to whatever value you like here.ToolTip shown when a user hovers over the SettingsView_SyncthingAddress text input. This shows more information on the input.
-
- Use custom home directory for Syncthing.
+
+ Use Syncthing's default database location
-
- This will mean that SyncTrayzor will see a different set of configured folders to any other Syncthing instances on your computer.
- ToolTip shown when a user hovers over the SettingsView_SyncthingUseCustomHome text input. This shows more information on the input.
+
+ If unchecked, this will mean that SyncTrayzor will see a different set of configured folders to any other Syncthing instances on your computer.
+ ToolTip shown when a user hovers over the SettingsView_SyncthingUseDefaultHome text input. This shows more information on the input.Settings