From 5712893a043c2e557f98d2339fa9a131b34344d0 Mon Sep 17 00:00:00 2001 From: "taeyoon0.lee" Date: Wed, 11 Oct 2017 17:56:34 +0900 Subject: [PATCH] [4.0] Call RequestUpdateOnce after pause callback This reverts commit c97aabad2073f2a1516fe2025346dc9ddca18651. Change-Id: I2859404994fe2c23edc99fc289e77e0fc0428312 --- 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 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(); } } -- 2.7.4