From e33f884b6b613033d8a4fd270a33c9d444933061 Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Tue, 12 Sep 2017 12:00:22 +0900 Subject: [PATCH] [4.0] Call RequestUpdateOnce after pause callback Change-Id: I77cc51526cefac53438704958706e5d247731a34 --- adaptors/common/adaptor-impl.cpp | 3 +++ 1 file changed, 3 insertions(+) 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(); } } -- 2.7.4