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

svn_grass at osgeo.org svn_grass at osgeo.org
Sat May 26 06:36:50 EDT 2012


Author: annakrat
Date: 2012-05-26 03:36:49 -0700 (Sat, 26 May 2012)
New Revision: 51766

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_core/widgets.py
Log:
wxGUI: fix Gtk warnings when switching to 3D view (merged from trunk, r51699)

Modified: grass/branches/develbranch_6/gui/wxpython/gui_core/widgets.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_core/widgets.py	2012-05-26 10:32:37 UTC (rev 51765)
+++ grass/branches/develbranch_6/gui/wxpython/gui_core/widgets.py	2012-05-26 10:36:49 UTC (rev 51766)
@@ -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