Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Medrano <josmed@microsoft.com>2020-01-15 14:57:31 +0300
committermonojenkins <jo.shields+jenkins@xamarin.com>2020-01-22 23:50:16 +0300
commit7ac0fcd234542127ff0c794ff47f3a9dc73f0a70 (patch)
treeff7fcb1db2a3565029d47b703d650105f7018d1b
parent0124b7b7df4cbbf8e7be846ccde9db4bf4ac89e9 (diff)
Adds missing renames on savefix-984930
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Commands/CommandManager.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Commands/CommandManager.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Commands/CommandManager.cs
index a7f62172c5..a0581bec8f 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Commands/CommandManager.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.Commands/CommandManager.cs
@@ -935,7 +935,7 @@ namespace MonoDevelop.Components.Commands
toolbar.SetEnabled (true);
}
- if (IsGuiLocked)
+ if (IsLocked)
guiLock--;
return guiLock == 0;
}
@@ -1594,7 +1594,7 @@ namespace MonoDevelop.Components.Commands
RegisterUserInteraction ();
- if (IsGuiLocked)
+ if (IsLocked)
return false;
#if MAC
@@ -1844,7 +1844,7 @@ namespace MonoDevelop.Components.Commands
if (IsEnabled)
cui.Run (cmdTarget, info.ArrayInfo);
if (!info.ArrayInfo.Bypass) {
- if (info.DisableOnShellLock && IsGuiLocked)
+ if (info.DisableOnShellLock && IsLocked)
info.Enabled = false;
handlerFound = true;
}
@@ -1854,7 +1854,7 @@ namespace MonoDevelop.Components.Commands
if (IsEnabled)
cui.Run (cmdTarget, info);
if (!info.Bypass) {
- if (info.DisableOnShellLock && IsGuiLocked)
+ if (info.DisableOnShellLock && IsLocked)
info.Enabled = false;
handlerFound = true;
}
@@ -1906,7 +1906,7 @@ namespace MonoDevelop.Components.Commands
CurrentCommand = null;
}
- if (info.DisableOnShellLock && IsGuiLocked)
+ if (info.DisableOnShellLock && IsLocked)
info.Enabled = false;
return info;
}