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:
authorLluis Sanchez <lluis@xamarin.com>2012-09-19 15:54:31 +0400
committerLluis Sanchez <lluis@xamarin.com>2012-09-19 15:54:31 +0400
commit8bf1b89e3a744bec9d4bd8648dff20b92c9d0ccd (patch)
tree09043001c495b63281dad9b4008b235725a26850 /main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
parentb137e7e16e0c166699eabc62c76f490da0971e54 (diff)
Fix command and property pad routing issue
Disabled routing of commands through the active document when the document doesn't have the focus. This was added to avoid the property pad to be reset when the focus was temporarily moved away from the designer, but this change is caused other problems, such as for example editor commands being executed when the focus is in a pad. Instead of permanently routing commands to the active document, the solution is to do it only when looking for a property pad provider. This fixes the following bugs: 7033 - Select All does not work in the unified search box 7151 - Wrong keyboard focus
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/AssemblyInfo.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/AssemblyInfo.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs b/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
index 1050448a1a..8cb63a2d81 100644
--- a/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
+++ b/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
@@ -11,3 +11,4 @@ using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("MacPlatform")]
[assembly: InternalsVisibleTo("MonoDevelop.Debugger")]
+[assembly: InternalsVisibleTo("MonoDevelop.DesignerSupport")]