[4.0] Ensure last frame update when adaptor is paused 49/163049/1 accepted/tizen/4.0/unified/20171207.124756 submit/tizen_4.0/20171207.094309
authorHeeyong Song <heeyong.song@samsung.com>
Wed, 6 Dec 2017 09:44:15 +0000 (18:44 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 7 Dec 2017 04:57:02 +0000 (13:57 +0900)
Change-Id: I63b49769f51901a0ede71d072465be90e05b2ff4

adaptors/common/adaptor-impl.cpp

index b757d9f..a3d7ea4 100644 (file)
@@ -347,6 +347,9 @@ void Adaptor::Pause()
 
     mThreadController->Pause();
     mState = PAUSED;
+
+    // Ensure any messages queued during pause callbacks are processed by doing another update.
+    RequestUpdateOnce();
   }
 }