]> git.lyx.org Git - features.git/commitdiff
Enable user input processing when an external process is busy.
authorPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 11:20:00 +0000 (11:20 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Fri, 4 Dec 2009 11:20:00 +0000 (11:20 +0000)
If it breaks it anything just flip the bool to disable.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32329 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/Systemcall.cpp

index 83373d012d5cc37ed0c330ab65623881285714f5..d4a3b514fbe84de697e4a213970e97384ed79a6a 100644 (file)
@@ -105,7 +105,7 @@ int Systemcall::startscript(Starttype how, string const & what)
        QString cmd = toqstr(parsecmd(what, outfile));
        SystemcallPrivate d(outfile);
 
-       bool process_events = false;
+       bool process_events = true;
 
        d.startProcess(cmd);
        if (!d.waitWhile(SystemcallPrivate::Starting, process_events, 3000)) {