Skip to content

Commit

Permalink
Mark ConEmu as experimental and disable by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbialobr committed Mar 23, 2017
1 parent bdbd501 commit 1aef731
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions GitCommands/Settings/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1328,8 +1328,8 @@ public static bool OmitUninterestingDiff

public static bool UseConsoleEmulatorForCommands
{
get { return GetBool("UseConsoleEmulatorForCommands", true); }
set { SetBool("UseConsoleEmulatorForCommands", value); }
get { return GetBool("UseConsoleEmulatorForCommandsEx", false); }
set { SetBool("UseConsoleEmulatorForCommandsEx", value); }
}

public static string GetGitExtensionsFullPath()
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected override void SettingsToPage()
chkDontSHowHelpImages.Checked = AppSettings.DontShowHelpImages;
chkAlwaysShowAdvOpt.Checked = AppSettings.AlwaysShowAdvOpt;
chkCheckForRCVersions.Checked = AppSettings.CheckForReleaseCandidates;
chkConsoleEmulator.Checked = AppSettings.UseConsoleEmulatorForCommands;
chkConsoleEmulatorEx.Checked = AppSettings.UseConsoleEmulatorForCommands;
chkAutoNormaliseBranchName.Checked = AppSettings.AutoNormaliseBranchName;
cboAutoNormaliseSymbol.Enabled = chkAutoNormaliseBranchName.Checked;
cboAutoNormaliseSymbol.SelectedValue = AppSettings.AutoNormaliseSymbol;
Expand All @@ -39,7 +39,7 @@ protected override void PageToSettings()
AppSettings.DontShowHelpImages = chkDontSHowHelpImages.Checked;
AppSettings.AlwaysShowAdvOpt = chkAlwaysShowAdvOpt.Checked;
AppSettings.CheckForReleaseCandidates = chkCheckForRCVersions.Checked;
AppSettings.UseConsoleEmulatorForCommands = chkConsoleEmulator.Checked;
AppSettings.UseConsoleEmulatorForCommands = chkConsoleEmulatorEx.Checked;
AppSettings.AutoNormaliseBranchName = chkAutoNormaliseBranchName.Checked;
AppSettings.AutoNormaliseSymbol = (string)cboAutoNormaliseSymbol.SelectedValue;
}
Expand Down

0 comments on commit 1aef731

Please sign in to comment.