From: Heeyong Song Date: Tue, 12 Sep 2017 03:00:22 +0000 (+0900) Subject: [4.0] Call RequestUpdateOnce after pause callback X-Git-Tag: accepted/tizen/4.0/unified/20170918.093603~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F149253%2F1;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git [4.0] Call RequestUpdateOnce after pause callback Change-Id: I77cc51526cefac53438704958706e5d247731a34 --- diff --git a/adaptors/common/adaptor-impl.cpp b/adaptors/common/adaptor-impl.cpp index 09cc801..79228f2 100644 --- a/adaptors/common/adaptor-impl.cpp +++ b/adaptors/common/adaptor-impl.cpp @@ -304,6 +304,9 @@ void Adaptor::Pause() mThreadController->Pause(); mCore->Suspend(); mState = PAUSED; + + // Process remained events and rendering in the update thread + RequestUpdateOnce(); } }