From: Seoyeon Kim Date: Mon, 16 Oct 2017 02:25:52 +0000 (+0900) Subject: [4.0] Call RequestUpdateOnce after pause callback X-Git-Tag: accepted/tizen/4.0/unified/20171017.212913~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=6cb34e0254f7681304b976e651f2602e2768ba5e;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git [4.0] Call RequestUpdateOnce after pause callback This reverts commit 83bc54335c566e8a611e6bf19cf0924b1db719ee. Change-Id: I9523af9220dd95bdf8c8dbb480da6701c4a7a5fa --- 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(); } }