[GRASS-SVN] r47203 -
grass/branches/releasebranch_6_4/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Jul 21 08:05:43 EDT 2011
Author: martinl
Date: 2011-07-21 05:05:43 -0700 (Thu, 21 Jul 2011)
New Revision: 47203
Modified:
grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py
Log:
wxGUI: fix button width (clear/save)
(merge r47202 from trunk)
Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py 2011-07-21 11:55:01 UTC (rev 47202)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py 2011-07-21 12:05:43 UTC (rev 47203)
@@ -249,16 +249,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