From d4af25c52a28b93484ffb55e0a8027bc4ce7856f Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:21:59 +0200 Subject: 5.9 --- lib/status_handler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/status_handler.h') diff --git a/lib/status_handler.h b/lib/status_handler.h index 789293e4..93f9892c 100644 --- a/lib/status_handler.h +++ b/lib/status_handler.h @@ -75,8 +75,8 @@ protected: if (updateUiIsAllowed()) //test if specific time span between ui updates is over forceUiRefresh(); - if (abortRequested) - abortThisProcess(); //abort can be triggered by requestAbortion() + if (abortRequested) //check *after* GUI update, to have up-to-date screen + abortThisProcess(); //triggered by requestAbortion() } virtual void reportStatus(const std::wstring& text) { statusText_ = text; requestUiRefresh(); /*throw AbortThisProcess */ } -- cgit