From ab52859461f5142e5d6cb37a527b349708637931 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Mon, 12 Apr 2021 14:25:39 +1000 Subject: [PATCH] save cmd history to settings --- Plugins/Flow.Launcher.Plugin.Shell/Settings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs b/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs index 7294630bb..8c745f326 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs +++ b/Plugins/Flow.Launcher.Plugin.Shell/Settings.cs @@ -9,7 +9,7 @@ namespace Flow.Launcher.Plugin.Shell public bool LeaveShellOpen { get; set; } public bool RunAsAdministrator { get; set; } = true; - public Dictionary Count = new Dictionary(); + public Dictionary Count { get; set; } = new Dictionary(); public void AddCmdHistory(string cmdName) {