[GRASS-SVN] r67684 - grass-addons/grass7/gui/wxpython/wx.mwprecip

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 27 03:48:22 PST 2016


Author: martinl
Date: 2016-01-27 03:48:22 -0800 (Wed, 27 Jan 2016)
New Revision: 67684

Modified:
   grass-addons/grass7/gui/wxpython/wx.mwprecip/g.gui.mwprecip.py
Log:
wx.mwprecip: db connection widget reorder

Modified: grass-addons/grass7/gui/wxpython/wx.mwprecip/g.gui.mwprecip.py
===================================================================
--- grass-addons/grass7/gui/wxpython/wx.mwprecip/g.gui.mwprecip.py	2016-01-27 11:01:51 UTC (rev 67683)
+++ grass-addons/grass7/gui/wxpython/wx.mwprecip/g.gui.mwprecip.py	2016-01-27 11:48:22 UTC (rev 67684)
@@ -31,11 +31,11 @@
         self.SetScrollRate( 5, 5 )
         self.settings = settings
         self.database = BaseInput(self, label='Name of database')
+        self.user = BaseInput(self, label='User name')
+        self.passwd = BaseInput(self, label='Password', style=wx.TE_PASSWORD)
+        self.host = BaseInput(self, label='Host name')
         self.schema = BaseInput(self, label='Name of schema')
-        self.host = BaseInput(self, label='Host name')
-        self.user = BaseInput(self, label='User name')
         self.port = BaseInput(self, label='Port')
-        self.passwd = BaseInput(self, label='Password', style=wx.TE_PASSWORD)
         # self.saveLoad = SaveLoad(self)
         self.okBtt = wx.Button(self, wx.ID_OK)
         self.okBtt.Bind(wx.EVT_BUTTON, self.saveSettings)



More information about the grass-commit mailing list