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@novell.com>2010-05-21 21:49:21 +0400
committerLluis Sanchez <lluis@novell.com>2010-05-21 21:49:21 +0400
commit9746c2960b217590502adaddab34af63ddeee321 (patch)
tree6ff560ebfa6f2cc8a799dc2cdacebab68c8c93d1 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands
parentcf9baf1babce8016f26c2182934e83d67f2813d9 (diff)
* MonoDevelop.Ide.addin.xml:
* MonoDevelop.Ide.Commands/EditCommands.cs: Forward the delete key to gtk if not processed. svn path=/trunk/monodevelop/; revision=157712
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/EditCommands.cs16
1 files changed, 15 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/EditCommands.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/EditCommands.cs
index efc36ed1d2..78acb23889 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/EditCommands.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Commands/EditCommands.cs
@@ -88,6 +88,20 @@ namespace MonoDevelop.Ide.Commands
}
}
+ internal class DefaultDeleteKeyHandler: CommandHandler
+ {
+ protected override void Run ()
+ {
+ // Nothing. Will be forwarded to gtk
+ }
+
+ protected override void Update (CommandInfo info)
+ {
+ // Forward to gtk
+ info.Bypass = true;
+ }
+ }
+
internal class DefaultDeleteHandler: CommandHandler
{
protected override void Run ()
@@ -129,7 +143,7 @@ namespace MonoDevelop.Ide.Commands
else if (focus is Gtk.TextView)
info.Enabled = ((Gtk.TextView)focus).Editable;
else
- info.Enabled = false;
+ info.Bypass = true;
}
}