[GRASS-SVN] r36990 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon May 4 12:11:42 EDT 2009
Author: martinl
Date: 2009-05-04 12:11:42 -0400 (Mon, 04 May 2009)
New Revision: 36990
Modified:
grass/trunk/gui/wxpython/gui_modules/globalvar.py
grass/trunk/gui/wxpython/gui_modules/toolbars.py
Log:
wxGUI: map window size changed to accommodate vdigit toolbar (gnome)
(merge from relbr64, r36988)
Modified: grass/trunk/gui/wxpython/gui_modules/globalvar.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/globalvar.py 2009-05-04 16:10:46 UTC (rev 36989)
+++ grass/trunk/gui/wxpython/gui_modules/globalvar.py 2009-05-04 16:11:42 UTC (rev 36990)
@@ -89,7 +89,7 @@
DIALOG_TEXTCTRL_SIZE = (400, -1)
DIALOG_LAYER_SIZE = (100, -1)
-MAP_WINDOW_SIZE = (760, 570)
+MAP_WINDOW_SIZE = (770, 570)
HIST_WINDOW_SIZE = (500, 350)
MAP_DISPLAY_STATUSBAR_MODE = [_("Coordinates"),
Modified: grass/trunk/gui/wxpython/gui_modules/toolbars.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/toolbars.py 2009-05-04 16:10:46 UTC (rev 36989)
+++ grass/trunk/gui/wxpython/gui_modules/toolbars.py 2009-05-04 16:11:42 UTC (rev 36990)
@@ -1233,7 +1233,7 @@
if not self.comboid:
self.combo = wx.ComboBox(self.toolbar[self.numOfRows-1], id=wx.ID_ANY, value=value,
- choices=[_('New vector map'), ] + layerNameList, size=(105, -1),
+ choices=[_('New vector map'), ] + layerNameList, size=(85, -1),
style=wx.CB_READONLY)
self.comboid = self.toolbar[self.numOfRows-1].InsertControl(0, self.combo)
self.parent.Bind(wx.EVT_COMBOBOX, self.OnSelectMap, self.comboid)
More information about the grass-commit
mailing list