[GRASS-SVN] r47202 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Jul 21 07:55:01 EDT 2011
Author: martinl
Date: 2011-07-21 04:55:01 -0700 (Thu, 21 Jul 2011)
New Revision: 47202
Modified:
grass/trunk/gui/wxpython/gui_modules/goutput.py
Log:
wxGUI: fix button width (clear/save)
Modified: grass/trunk/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/goutput.py 2011-07-21 11:52:20 UTC (rev 47201)
+++ grass/trunk/gui/wxpython/gui_modules/goutput.py 2011-07-21 11:55:01 UTC (rev 47202)
@@ -250,16 +250,16 @@
# buttons
#
self.btn_console_clear = wx.Button(parent = self.panelPrompt, id = wx.ID_ANY,
- label = _("&Clear output"), size=(125,-1))
+ label = _("&Clear output"), size=(100,-1))
self.btn_cmd_clear = wx.Button(parent = self.panelPrompt, id = wx.ID_ANY,
- label = _("C&lear command"), size=(125,-1))
+ label = _("C&lear cmd"), size=(100,-1))
if self.parent.GetName() != 'LayerManager':
self.btn_cmd_clear.Hide()
self.btn_console_save = wx.Button(parent = self.panelPrompt, id = wx.ID_ANY,
- label = _("&Save output"), size=(125,-1))
+ label = _("&Save output"), size=(100,-1))
# abort
- self.btn_abort = wx.Button(parent = self.panelPrompt, id = wx.ID_ANY, label = _("&Abort command"),
- size=(125,-1))
+ self.btn_abort = wx.Button(parent = self.panelPrompt, id = wx.ID_ANY, label = _("&Abort cmd"),
+ size=(100,-1))
self.btn_abort.SetToolTipString(_("Abort the running command"))
self.btn_abort.Enable(False)
More information about the grass-commit
mailing list