Process events after application is resumed 00/168000/2
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 23 Jan 2018 09:44:19 +0000 (18:44 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Wed, 24 Jan 2018 13:28:35 +0000 (22:28 +0900)
Change-Id: I1db16e2792891d6c90a4b2deb5d8315afe68859d

adaptors/common/application-impl.cpp

index 0a978a6..e6424c5 100644 (file)
@@ -328,6 +328,10 @@ void Application::OnResume()
   // DALi just delivers the framework Resume event to the application.
   // Resuming DALi core only occurs on the Window Show framework event
 
+  // Trigger processing of events queued up while paused
+  CoreEventInterface& coreEventInterface = Internal::Adaptor::Adaptor::GetImplementation( GetAdaptor() );
+  coreEventInterface.ProcessCoreEvents();
+
   DALI_LOG_RELEASE_INFO( "Application::OnResume has finished.\n" );
 }