summaryrefslogtreecommitdiff
path: root/library/multithreading.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/multithreading.cpp')
-rw-r--r--library/multithreading.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/multithreading.cpp b/library/multithreading.cpp
index f7f5ed04..106d1aa7 100644
--- a/library/multithreading.cpp
+++ b/library/multithreading.cpp
@@ -151,7 +151,7 @@ void UpdateWhileExecuting::execute(StatusHandler* statusUpdater)
while (receivingResult.WaitTimeout(UI_UPDATE_INTERVAL) == wxCOND_TIMEOUT)
{
- statusUpdater->requestUiRefresh(true); //ATTENTION: Exception "AbortThisProcess" may be thrown here!!!
+ statusUpdater->requestUiRefresh(false); //don't allow throwing exception within this call
if (workDone) //workaround for a bug in wxWidgets v2.8.9 class wxCondition: signals might get lost
break; //no mutex for workDone needed here: it is changed only when mainthread is in WaitTimeout()
bgstack15