[4.0] Call RequestUpdateOnce after pause callback 73/155673/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 02:25:52 +0000 (11:25 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Mon, 16 Oct 2017 02:26:02 +0000 (11:26 +0900)
This reverts commit 83bc54335c566e8a611e6bf19cf0924b1db719ee.

Change-Id: I9523af9220dd95bdf8c8dbb480da6701c4a7a5fa

adaptors/common/adaptor-impl.cpp

index e9dfd5e..47512c7 100644 (file)
@@ -305,6 +305,9 @@ void Adaptor::Pause()
     mThreadController->Pause();
     mCore->Suspend();
     mState = PAUSED;
+
+    // Process remained events and rendering in the update thread
+    RequestUpdateOnce();
   }
 }