Переглянути джерело

wxGUI: fix button width (clear/save)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47202 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 14 роки тому
батько
коміт
48f1d2863f
1 змінених файлів з 5 додано та 5 видалено
  1. 5 5
      gui/wxpython/gui_modules/goutput.py

+ 5 - 5
gui/wxpython/gui_modules/goutput.py

@@ -250,16 +250,16 @@ class GMConsole(wx.SplitterWindow):
         # 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)