Ensure last frame update when adaptor is paused 49/162949/2
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 02:28:06 +0000 (11:28 +0900)
Change-Id: I63b49769f51901a0ede71d072465be90e05b2ff4

adaptors/common/adaptor-impl.cpp

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