Author: lluis
Date: 2008-02-19 15:27:55 -0500 (Tue, 19 Feb 2008)
New Revision: 96184

Modified:
   trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/ChangeLog
   
trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/ExtendibleTextEditor.cs
Log:
* MonoDevelop.SourceEditor/ExtendibleTextEditor.cs: Add binding for
  delete command, so the delete action will work even if the the
  delete command is bound to the delete key.

Modified: trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/ChangeLog
===================================================================
--- trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/ChangeLog       
2008-02-19 20:14:07 UTC (rev 96183)
+++ trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/ChangeLog       
2008-02-19 20:27:55 UTC (rev 96184)
@@ -1,3 +1,9 @@
+2008-02-19  Lluis Sanchez Gual <[EMAIL PROTECTED]> 
+
+       * MonoDevelop.SourceEditor/ExtendibleTextEditor.cs: Add binding for 
delete
+         command, so the delete action will work even if the the delete command
+         is bound to the delete key.
+
 2008-02-19  Mike Krüger <[EMAIL PROTECTED]> 
 
        * MonoDevelop.SourceEditor/SourceEditorView.cs: fixed little comment 
issue.

Modified: 
trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/ExtendibleTextEditor.cs
===================================================================
--- 
trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/ExtendibleTextEditor.cs
        2008-02-19 20:14:07 UTC (rev 96183)
+++ 
trunk/monodevelop/main/src/addins/MonoDevelop.SourceEditor2/MonoDevelop.SourceEditor/ExtendibleTextEditor.cs
        2008-02-19 20:27:55 UTC (rev 96184)
@@ -490,6 +490,7 @@
                        RunAction (new BackspaceAction ());
                }
                
+               [CommandHandler (MonoDevelop.Ide.Commands.EditCommands.Delete)]
                [CommandHandler 
(MonoDevelop.Ide.Commands.TextEditorCommands.DeleteRightChar)]
                internal void OnDeleteRightChar ()
                {

_______________________________________________
Mono-patches maillist  -  Mono-patches@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to