From 199d07aeda7adf1ba0adf9ed313884951a0414a7 Mon Sep 17 00:00:00 2001 From: abn Date: Thu, 18 Dec 2014 10:28:15 +0100 Subject: [PATCH] Using --use-offscreen-rendering by default on the pvserver to avoid having an extra X window appearing when rendering big files. --- src/ENGINE/no_wrap/PVSERVER.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ENGINE/no_wrap/PVSERVER.py b/src/ENGINE/no_wrap/PVSERVER.py index 90b7cd5b..f8d64ea8 100644 --- a/src/ENGINE/no_wrap/PVSERVER.py +++ b/src/ENGINE/no_wrap/PVSERVER.py @@ -106,7 +106,7 @@ class PVSERVER_Impl: opt = [] if port <= 0: port = self.__getFreePort(self.PVSERVER_DEFAULT_PORT) - self.pvserverPop = subp.Popen([pvServerPath, "--multi-clients", "--server-port=%d" % port]) + self.pvserverPop = subp.Popen([pvServerPath, "--multi-clients", "--server-port=%d" % port, "--use-offscreen-rendering"]) sleep(3) # Give some time to the server to start up to avoid # ugly messages on the client side saying that it cannot connect # Is PID still alive? If yes, consider that the launch was successful -- 2.39.2