[GRASS-SVN] r57373 - grass/trunk/gui/wxpython/gcp
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Aug 2 10:06:39 PDT 2013
Author: martinl
Date: 2013-08-02 10:06:39 -0700 (Fri, 02 Aug 2013)
New Revision: 57373
Modified:
grass/trunk/gui/wxpython/gcp/g.gui.gcp.py
Log:
g.gui.gcp: launch GUI in the background
Modified: grass/trunk/gui/wxpython/gcp/g.gui.gcp.py
===================================================================
--- grass/trunk/gui/wxpython/gcp/g.gui.gcp.py 2013-08-02 17:05:19 UTC (rev 57372)
+++ grass/trunk/gui/wxpython/gcp/g.gui.gcp.py 2013-08-02 17:06:39 UTC (rev 57373)
@@ -73,4 +73,8 @@
if __name__ == '__main__':
- main()
+ # launch GUI in the background
+ child_pid = os.fork()
+ if child_pid == 0:
+ main()
+ os._exit(0)
More information about the grass-commit
mailing list