[mapguide-commits] r6021 - trunk/Tools/Maestro/Maestro.Editors/Generic

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Mon Aug 1 09:53:27 EDT 2011


Author: jng
Date: 2011-08-01 06:53:27 -0700 (Mon, 01 Aug 2011)
New Revision: 6021

Modified:
   trunk/Tools/Maestro/Maestro.Editors/Generic/XmlEditorCtrl.cs
Log:
#1764: Enable select all on the XML editor, which was inadvertently disabled in a previous submission


Modified: trunk/Tools/Maestro/Maestro.Editors/Generic/XmlEditorCtrl.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/Generic/XmlEditorCtrl.cs	2011-08-01 12:11:00 UTC (rev 6020)
+++ trunk/Tools/Maestro/Maestro.Editors/Generic/XmlEditorCtrl.cs	2011-08-01 13:53:27 UTC (rev 6021)
@@ -216,13 +216,12 @@
 
         private void txtXmlContent_KeyUp(object sender, KeyEventArgs e)
         {
-            /*
             if (e.KeyData == (Keys.Control | Keys.A))
             {
                 txtXmlContent.SelectAll();
                 e.SuppressKeyPress = true;
                 e.Handled = true;
-            }
+            }/*
             else if (e.KeyData == (Keys.Control | Keys.C))
             {
                 txtXmlContent.Copy();



More information about the mapguide-commits mailing list