From 6d4d4e0fe512b522ab85d82b50ca0305fea3310b Mon Sep 17 00:00:00 2001 From: "Jinho, Lee" Date: Thu, 28 Sep 2017 17:09:09 +0900 Subject: [PATCH] [4.0] Call RequestUpdateOnce after pause callback This reverts commit 06cf40aa46d2c142deb66692347251f1526b7f3e. Change-Id: I4b82c131fc61ff9405fed625cefc635ba406ee05 --- 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 6f52ff6..7675c90 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