From 6cb34e0254f7681304b976e651f2602e2768ba5e Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Mon, 16 Oct 2017 11:25:52 +0900 Subject: [PATCH] [4.0] Call RequestUpdateOnce after pause callback This reverts commit 83bc54335c566e8a611e6bf19cf0924b1db719ee. Change-Id: I9523af9220dd95bdf8c8dbb480da6701c4a7a5fa --- 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