[GRASS-SVN] r48184 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 7 08:23:37 EDT 2011


Author: neteler
Date: 2011-09-07 05:23:37 -0700 (Wed, 07 Sep 2011)
New Revision: 48184

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
Log:
show 'busy' mouse cursor while fetching addons list

Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py	2011-09-07 12:23:29 UTC (rev 48183)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/ghelp.py	2011-09-07 12:23:37 UTC (rev 48184)
@@ -951,9 +951,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