From: Peter Kümmel Date: Fri, 4 Dec 2009 11:20:00 +0000 (+0000) Subject: Enable user input processing when an external process is busy. X-Git-Tag: 2.0.0~4918 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0af92c85e9e8f45d5621de1d3e44b6977c2b4f79;p=features.git Enable user input processing when an external process is busy. 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 --- diff --git a/src/support/Systemcall.cpp b/src/support/Systemcall.cpp index 83373d012d..d4a3b514fb 100644 --- a/src/support/Systemcall.cpp +++ b/src/support/Systemcall.cpp @@ -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)) {