[GRASS-SVN] r50409 - grass/branches/develbranch_6/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jan 24 06:54:00 EST 2012


Author: martinl
Date: 2012-01-24 03:54:00 -0800 (Tue, 24 Jan 2012)
New Revision: 50409

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_core/gselect.py
Log:
#1543 (WXGUI GDAL/OGR import dialogs fail to open in WinGRASS)


Modified: grass/branches/develbranch_6/gui/wxpython/gui_core/gselect.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_core/gselect.py	2012-01-24 11:50:25 UTC (rev 50408)
+++ grass/branches/develbranch_6/gui/wxpython/gui_core/gselect.py	2012-01-24 11:54:00 UTC (rev 50409)
@@ -997,7 +997,7 @@
         @param ogr True for OGR otherwise GDAL
         """
         super(FormatSelect, self).__init__(parent, id, size = size, 
-                                           style = wx.CB_READONLY, **kwargs)
+                                           **kwargs)
         self.SetName("FormatSelect")
         
         if ogr:
@@ -1691,7 +1691,7 @@
         @param parent parent window
         """
         super(ElementSelect, self).__init__(parent, id, size = size, 
-                                            style = wx.CB_READONLY, **kwargs)
+                                            **kwargs)
         self.SetName("ElementSelect")
         
         task = gtask.parse_interface('g.list')



More information about the grass-commit mailing list