Skip to content

Commit

Permalink
No async when minimized (#10880)
Browse files Browse the repository at this point in the history
Do not run git-ls-files by default when in minimized
to not interfere with restoring.
The setting was added in
cccfbc9
but required explicit configuration.

Co-authored-by: Gerhard Olsson <gerhardol@users.noreply.github.com>
  • Loading branch information
gerhardol and gerhardol committed Apr 15, 2023
1 parent 8a9cb8d commit fd39751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GitCommands/Settings/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit fd39751

Please sign in to comment.