Browse Source

wxGUI/vnet: fix https://trac.osgeo.org/grass/ticket/2145

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58490 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 11 năm trước cách đây
mục cha
commit
42e84992c0
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      gui/wxpython/vnet/vnet_data.py

+ 1 - 1
gui/wxpython/vnet/vnet_data.py

@@ -235,7 +235,7 @@ class VNETPointsData:
         self.data = []
         self.cols = { "name" : ['use', 'type', 'topology', 'e', 'n'],
                       "label" : [_('use'), _('type'), _('topology'), 'e', 'n'],
-                      "type" :  [None, [_(""), _("Start point"), _("End Point")], None, float, float],#TDO
+                      "type" :  [None, ["", _("Start point"), _("End Point")], None, float, float],#TDO
                       "def_vals" : [False, 0, "new point", 0, 0]  
                     }