Przeglądaj źródła

wxGUI/gui_core: use standard format for option name with type in box label in forms (e.g. g.mlist now has 'type=string' instead of 'type, string')

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@61387 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 10 lat temu
rodzic
commit
eb1c8e765b
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gui/wxpython/gui_core/forms.py

+ 1 - 1
gui/wxpython/gui_core/forms.py

@@ -974,7 +974,7 @@ class CmdPanel(wx.Panel):
                 if p.get('multiple', False) and \
                         p.get('gisprompt',False) == False and \
                         p.get('type', '') == 'string':
-                    title_txt.SetLabel(" %s: (%s, %s) " % (title, p['name'], p['type']))
+                    title_txt.SetLabel(" %s: (%s=%s) " % (title, p['name'], p['type']))
                     stSizer = wx.StaticBoxSizer(box = title_txt, orient = wx.VERTICAL)
                     if valuelist_desc:
                         hSizer = wx.FlexGridSizer(cols = 1, vgap = 1)