Fix loading our app state (#40401)
Some checks failed
Spell checking / Check Spelling (push) Has been cancelled
Spell checking / Report (Push) (push) Has been cancelled
Spell checking / Report (PR) (push) Has been cancelled
Spell checking / Update PR (push) Has been cancelled

Yea this is dumb. Cant have private setters when json deserializing.
closes #40399
This commit is contained in:
Mike Griese
2025-07-06 16:10:15 -05:00
committed by GitHub
parent 0c425fd1d7
commit 0f279002f8
2 changed files with 4 additions and 2 deletions

View File

@@ -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
///////////////////////////////////////////////////////////////////////////