git-svn-id: https://svn.osgeo.org/grass/grass/trunk@57371 15284696-431f-4ddb-bdfa-cd5b030d7da7
@@ -114,5 +114,8 @@ def main():
app.MainLoop()
if __name__ == '__main__':
- main()
-
+ # launch GUI in the background
+ child_pid = os.fork()
+ if child_pid == 0:
+ main()
+ os._exit(0)