[GRASS-SVN] r50410 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jan 24 06:56:35 EST 2012


Author: martinl
Date: 2012-01-24 03:56:35 -0800 (Tue, 24 Jan 2012)
New Revision: 50410

Modified:
   grass/trunk/gui/wxpython/gui_core/gselect.py
Log:
#1543 (WXGUI GDAL/OGR import dialogs fail to open in WinGRASS)
      (merge r50409 from devbr6)


Modified: grass/trunk/gui/wxpython/gui_core/gselect.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/gselect.py	2012-01-24 11:54:00 UTC (rev 50409)
+++ grass/trunk/gui/wxpython/gui_core/gselect.py	2012-01-24 11:56:35 UTC (rev 50410)
@@ -1012,7 +1012,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:
@@ -1792,7 +1792,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