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 06ebe6c commit c4e0f04Copy full SHA for c4e0f04
Files/DataModels/SidebarPinnedModel.cs
@@ -12,6 +12,7 @@ namespace Files.DataModels
12
{
13
public class SidebarPinnedModel
14
15
+ [JsonIgnore]
16
public SettingsViewModel AppSettings => App.AppSettings;
17
18
public static readonly string JsonFileName = "PinnedItems.json";
Files/Views/InstanceTabsView.xaml.cs
@@ -38,8 +38,8 @@ public InstanceTabsView()
38
CoreTitleBar.ExtendViewIntoTitleBar = true;
39
tabView = TabStrip;
40
41
- App.SidebarPinned = new SidebarPinnedModel();
42
App.AppSettings = new SettingsViewModel();
+ App.SidebarPinned = new SidebarPinnedModel();
43
App.InteractionViewModel = new InteractionViewModel();
44
45
// Turn on Navigation Cache
0 commit comments