[GRASS-SVN] r51410 -
grass/branches/releasebranch_6_4/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Apr 13 08:57:52 EDT 2012
Author: annakrat
Date: 2012-04-13 05:57:52 -0700 (Fri, 13 Apr 2012)
New Revision: 51410
Modified:
grass/branches/releasebranch_6_4/gui/wxpython/gui_core/widgets.py
Log:
wxGUI: quick fix for PyAssertionError in SymbolButton on windows
Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_core/widgets.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_core/widgets.py 2012-04-13 12:54:40 UTC (rev 51409)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_core/widgets.py 2012-04-13 12:57:52 UTC (rev 51410)
@@ -26,6 +26,7 @@
"""
import os
+import sys
import string
import wx
@@ -194,7 +195,8 @@
elif usage == 'pause':
self.DrawPause(dc, size)
- buffer.SetMaskColour(maskColor)
+ if sys.platform != "win32":
+ buffer.SetMaskColour(maskColor)
self.SetBitmapLabel(buffer)
dc.SelectObject(wx.NullBitmap)
More information about the grass-commit
mailing list