mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
Fix loading our app state (#40401)
Yea this is dumb. Cant have private setters when json deserializing. closes #40399
This commit is contained in:
@@ -21,7 +21,7 @@ public partial class AppStateModel : ObservableObject
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
// STATE HERE
|
||||
public RecentCommandsManager RecentCommands { get; private set; } = new();
|
||||
public RecentCommandsManager RecentCommands { get; set; } = new();
|
||||
|
||||
// END SETTINGS
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user