[GRASS-SVN] r67416 - grass/trunk/gui/wxpython/tplot
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Dec 29 04:53:44 PST 2015
Author: lucadelu
Date: 2015-12-29 04:53:44 -0800 (Tue, 29 Dec 2015)
New Revision: 67416
Modified:
grass/trunk/gui/wxpython/tplot/frame.py
Log:
g.gui.tplot: try to fix error during exit
Modified: grass/trunk/gui/wxpython/tplot/frame.py
===================================================================
--- grass/trunk/gui/wxpython/tplot/frame.py 2015-12-29 09:55:46 UTC (rev 67415)
+++ grass/trunk/gui/wxpython/tplot/frame.py 2015-12-29 12:53:44 UTC (rev 67416)
@@ -126,9 +126,10 @@
self.dbif.close()
tgis.stop_subprocesses()
- def onClose(self,evt):
- self.coorval.OnClose()
- self.cats.OnClose()
+ def onClose(self, evt):
+ # this two lines return errors during exit
+ # self.coorval.OnClose()
+ # self.cats.OnClose()
self.Destroy()
def _layout(self):
More information about the grass-commit
mailing list