We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc87e12 commit 70b49baCopy full SHA for 70b49ba
src/Files.Uwp/ViewModels/FolderSettingsViewModel.cs
@@ -20,7 +20,7 @@ public class FolderSettingsViewModel : ObservableObject
20
{
21
public static string LayoutSettingsDbPath => IO.Path.Combine(ApplicationData.Current.LocalFolder.Path, "user_settings.db");
22
23
- private static readonly Lazy<LayoutPrefsDb> dbInstance = new(() => new LayoutPrefsDb(LayoutSettingsDbPath));
+ private static readonly Lazy<LayoutPrefsDb> dbInstance = new(() => new LayoutPrefsDb(LayoutSettingsDbPath, true));
24
public static LayoutPrefsDb DbInstance => dbInstance.Value;
25
26
public event EventHandler<LayoutPreferenceEventArgs> LayoutPreferencesUpdateRequired;
0 commit comments