[GRASS-SVN] r69358 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Sep 3 08:48:33 PDT 2016


Author: wenzeslaus
Date: 2016-09-03 08:48:33 -0700 (Sat, 03 Sep 2016)
New Revision: 69358

Modified:
   grass/trunk/gui/wxpython/gui_core/ghelp.py
Log:
wxGUI/forms: actually set the loaded attribute, so the forms OnPageChange doesn't reload all the time

Modified: grass/trunk/gui/wxpython/gui_core/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/ghelp.py	2016-09-03 14:36:02 UTC (rev 69357)
+++ grass/trunk/gui/wxpython/gui_core/ghelp.py	2016-09-03 15:48:33 UTC (rev 69358)
@@ -736,6 +736,10 @@
 
         super(HelpWindow, self).OnLinkClicked(linkinfo)
 
+    def LoadPage(self, path):
+        super(HelpWindow, self).LoadPage(path)
+        self.loaded = True
+
     def fillContentsFromFile(self, htmlFile, skipDescription=True):
         """Load content from file.
 



More information about the grass-commit mailing list