]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Avoid kill after 30s...
authorAnthony Geay <anthony.geay@edf.fr>
Wed, 24 Feb 2021 08:40:09 +0000 (09:40 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Wed, 24 Feb 2021 08:40:09 +0000 (09:40 +0100)
src/SHAPERGUI/shapergui_app.cpp

index a212c1c30d0f4aae73530dde4ef6465a5f4be125..4c9d4739b7672a74284deab0bfdd762f24bbb2e0 100644 (file)
@@ -55,6 +55,6 @@ int main(int argc, char *argv[])
   proc.setArguments({"--modules=SHAPER"});
   proc.setProcessChannelMode( QProcess::ForwardedErrorChannel );
   proc.start();
-  proc.waitForFinished();
+  proc.waitForFinished(-1);
   return proc.exitCode();
 }