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

svn_grass at osgeo.org svn_grass at osgeo.org
Thu May 24 06:44:39 EDT 2012


Author: annakrat
Date: 2012-05-24 03:44:38 -0700 (Thu, 24 May 2012)
New Revision: 51699

Modified:
   grass/trunk/gui/wxpython/gui_core/widgets.py
Log:
wxGUI: fix Gtk warnings when switching to 3D view (since r50013)

Modified: grass/trunk/gui/wxpython/gui_core/widgets.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/widgets.py	2012-05-24 10:10:52 UTC (rev 51698)
+++ grass/trunk/gui/wxpython/gui_core/widgets.py	2012-05-24 10:44:38 UTC (rev 51699)
@@ -98,7 +98,7 @@
 
 class ScrolledPanel(SP.ScrolledPanel):
     """!Custom ScrolledPanel to avoid strange behaviour concerning focus"""
-    def __init__(self, parent, style = wx.TAB_TRAVERSAL | wx.SUNKEN_BORDER):
+    def __init__(self, parent, style = wx.TAB_TRAVERSAL):
         SP.ScrolledPanel.__init__(self, parent = parent, id = wx.ID_ANY, style = style)
 
     def OnChildFocus(self, event):



More information about the grass-commit mailing list