Przeglądaj źródła

wxGUI/dbmgr: enlarge columns widget

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@54242 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 12 lat temu
rodzic
commit
10a9a106bf
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      gui/wxpython/dbmgr/base.py

+ 1 - 1
gui/wxpython/dbmgr/base.py

@@ -1027,7 +1027,7 @@ class DbMgrBrowsePage(DbMgrNotebookBase):
 
         whereSimpleSqlPanel = wx.Panel(parent = simpleSqlPanel, id = wx.ID_ANY, name = 'wherePanel')   
         sqlWhereColumn = wx.ComboBox(parent = whereSimpleSqlPanel, id = wx.ID_ANY,
-                                     size = (100,-1),
+                                     size = (150,-1),
                                      style = wx.CB_SIMPLE | wx.CB_READONLY,
                                      choices = self.dbMgrData['mapDBInfo'].GetColumns(self.dbMgrData['mapDBInfo'].layers[layer]['table']))
         sqlWhereColumn.SetSelection(0)