[mapguide-commits] r4413 - trunk/Tools/Maestro/Maestro/ResourceEditors/LayerEditorControls

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Fri Dec 11 12:31:43 EST 2009


Author: ksgeograf
Date: 2009-12-11 12:31:43 -0500 (Fri, 11 Dec 2009)
New Revision: 4413

Modified:
   trunk/Tools/Maestro/Maestro/ResourceEditors/LayerEditorControls/SchemaSelector.cs
Log:
Maestro:
Fixed issue #1148.

Modified: trunk/Tools/Maestro/Maestro/ResourceEditors/LayerEditorControls/SchemaSelector.cs
===================================================================
--- trunk/Tools/Maestro/Maestro/ResourceEditors/LayerEditorControls/SchemaSelector.cs	2009-12-11 17:23:52 UTC (rev 4412)
+++ trunk/Tools/Maestro/Maestro/ResourceEditors/LayerEditorControls/SchemaSelector.cs	2009-12-11 17:31:43 UTC (rev 4413)
@@ -145,6 +145,7 @@
             resources.ApplyResources(this.Geometry, "Geometry");
             this.Geometry.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
             this.Geometry.Name = "Geometry";
+            this.Geometry.Sorted = true;
             this.Geometry.SelectedIndexChanged += new System.EventHandler(this.Geometry_SelectedIndexChanged);
             // 
             // Schema
@@ -152,6 +153,7 @@
             resources.ApplyResources(this.Schema, "Schema");
             this.Schema.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
             this.Schema.Name = "Schema";
+            this.Schema.Sorted = true;
             this.Schema.SelectedIndexChanged += new System.EventHandler(this.Schema_SelectedIndexChanged);
             // 
             // GeometryLabel



More information about the mapguide-commits mailing list