Browse Source

wxGUI: patch by giohappy applied, trac https://trac.osgeo.org/grass/ticket/261
(merge from devbr6, https://trac.osgeo.org/grass/changeset/32852)


git-svn-id: https://svn.osgeo.org/grass/grass/trunk@32853 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 17 years ago
parent
commit
beafdf8cea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/gui_modules/sqlbuilder.py

+ 1 - 1
gui/wxpython/gui_modules/sqlbuilder.py

@@ -108,7 +108,7 @@ class SQLFrame(wx.Frame):
         #
         # List Boxes
         #
-        self.list_columns = wx.ListBox(self, -1, wx.DefaultPosition, (-1, -1), self.column_names, wx.LB_MULTIPLE|wx.LB_SORT)
+        self.list_columns = wx.ListBox(self, -1, wx.DefaultPosition, (-1, -1), self.columns.keys(), wx.LB_MULTIPLE|wx.LB_SORT)
         self.list_values = wx.ListBox(self, -1, wx.DefaultPosition, (-1, -1), self.colvalues, wx.LB_MULTIPLE|wx.LB_SORT)
 
         #