[GRASS-SVN] r48183 - grass/branches/releasebranch_6_4/gui/wxpython/gui_modules

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


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

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

Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py	2011-09-07 08:27:53 UTC (rev 48182)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/ghelp.py	2011-09-07 12:23:29 UTC (rev 48183)
@@ -938,9 +938,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