[4.0] Call RequestUpdateOnce after pause callback 53/149253/1
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Sep 2017 03:00:22 +0000 (12:00 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Sep 2017 03:00:22 +0000 (12:00 +0900)
Change-Id: I77cc51526cefac53438704958706e5d247731a34

adaptors/common/adaptor-impl.cpp

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