From fd397514dd7a06ad362bc7f775b92260fbabf3d2 Mon Sep 17 00:00:00 2001 From: Gerhard Olsson <6248932+gerhardol@users.noreply.github.com> Date: Sat, 15 Apr 2023 12:35:52 +0200 Subject: [PATCH] No async when minimized (#10880) Do not run git-ls-files by default when in minimized to not interfere with restoring. The setting was added in cccfbc967ce835dfd64452a4c08db478936499b6 but required explicit configuration. Co-authored-by: Gerhard Olsson --- GitCommands/Settings/AppSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitCommands/Settings/AppSettings.cs b/GitCommands/Settings/AppSettings.cs index 77d880521ae..76debce216c 100644 --- a/GitCommands/Settings/AppSettings.cs +++ b/GitCommands/Settings/AppSettings.cs @@ -2042,7 +2042,7 @@ public static bool WorkaroundActivateFromMinimize public static bool GitAsyncWhenMinimized { - get => GetBool("GitAsyncWhenMinimized", true); + get => GetBool("GitAsyncWhenMinimized", false); } private static IEnumerable<(string name, string value)> GetSettingsFromRegistry()