From: taeyoon0.lee Date: Wed, 11 Oct 2017 08:56:34 +0000 (+0900) Subject: [4.0] Call RequestUpdateOnce after pause callback X-Git-Tag: accepted/tizen/4.0/unified/20171012.230021~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F154781%2F1;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git [4.0] Call RequestUpdateOnce after pause callback This reverts commit c97aabad2073f2a1516fe2025346dc9ddca18651. Change-Id: I2859404994fe2c23edc99fc289e77e0fc0428312 --- diff --git a/adaptors/common/adaptor-impl.cpp b/adaptors/common/adaptor-impl.cpp index e9dfd5e..47512c7 100644 --- a/adaptors/common/adaptor-impl.cpp +++ b/adaptors/common/adaptor-impl.cpp @@ -305,6 +305,9 @@ void Adaptor::Pause() mThreadController->Pause(); mCore->Suspend(); mState = PAUSED; + + // Process remained events and rendering in the update thread + RequestUpdateOnce(); } }