[GRASS-SVN] r39660 - grass-addons/gui/wxpython/data_catalog
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Nov 1 04:53:28 EST 2009
Author: neteler
Date: 2009-11-01 04:53:28 -0500 (Sun, 01 Nov 2009)
New Revision: 39660
Modified:
grass-addons/gui/wxpython/data_catalog/catalog.py
Log:
encoding fix
Modified: grass-addons/gui/wxpython/data_catalog/catalog.py
===================================================================
--- grass-addons/gui/wxpython/data_catalog/catalog.py 2009-11-01 09:46:03 UTC (rev 39659)
+++ grass-addons/gui/wxpython/data_catalog/catalog.py 2009-11-01 09:53:28 UTC (rev 39660)
@@ -77,15 +77,15 @@
self.loclist = self.GetLocations()
#setting splitter window
- self.win = wx.SplitterWindow(self)
- self.pLeft = wx.Panel(self.win, style=wx.SUNKEN_BORDER)
+ self.win = wx.SplitterWindow(self)
+ self.pLeft = wx.Panel(self.win, style=wx.SUNKEN_BORDER)
self.pRight = wx.Panel(self.win, style=wx.SUNKEN_BORDER)
- self.cmbPanel = wx.Panel(self)
+ self.cmbPanel = wx.Panel(self)
self.pRight.SetBackgroundColour("white")
- self.pLeft.Hide()
+ self.pLeft.Hide()
self.pRight.Hide()
self.win.Initialize(self.pLeft)
- self.win.SplitVertically(self.pLeft, self.pRight, 310)
+ self.win.SplitVertically(self.pLeft, self.pRight, 310)
#creating controls
More information about the grass-commit
mailing list