Skip to content

Commit

Permalink
Added setting to enable/disable autoscale
Browse files Browse the repository at this point in the history
  • Loading branch information
spdr870 committed Aug 19, 2012
1 parent aa9640d commit 57c4972
Show file tree
Hide file tree
Showing 7 changed files with 295 additions and 269 deletions.
7 changes: 7 additions & 0 deletions GitCommands/Settings.cs
Expand Up @@ -175,6 +175,13 @@ public static string CustomHomeDir
set { SafeSet("customhomedir", value, ref _customHomeDir); }
}

private static bool? _enableAutoScale;
public static bool EnableAutoScale
{
get { return SafeGet("enableautoscale", true, ref _enableAutoScale); }
set { SafeSet("enableautoscale", value, ref _enableAutoScale); }
}

private static string _iconColor;
public static string IconColor
{
Expand Down
22 changes: 11 additions & 11 deletions GitUI/FormCheckoutBranch.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions GitUI/FormCheckoutRemoteBranch.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 57c4972

Please sign in to comment.