[GRASS-SVN] r48185 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Sep 7 08:23:46 EDT 2011
Author: neteler
Date: 2011-09-07 05:23:46 -0700 (Wed, 07 Sep 2011)
New Revision: 48185
Modified:
grass/trunk/gui/wxpython/gui_modules/ghelp.py
Log:
show 'busy' mouse cursor while fetching addons list
Modified: grass/trunk/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/ghelp.py 2011-09-07 12:23:37 UTC (rev 48184)
+++ grass/trunk/gui/wxpython/gui_modules/ghelp.py 2011-09-07 12:23:46 UTC (rev 48185)
@@ -950,9 +950,11 @@
def OnFetch(self, event):
"""!Fetch list of available extensions"""
+ wx.BeginBusyCursor()
self.SetStatusText(_("Fetching list of modules from GRASS-Addons SVN (be patient)..."), 0)
self.tree.Load(url = self.repo.GetValue().strip(), full = self.fullDesc.IsChecked())
self.SetStatusText("", 0)
+ wx.EndBusyCursor()
def OnItemActivated(self, event):
item = event.GetItem()
More information about the grass-commit
mailing list