Process events after application is resumed
[platform/core/uifw/dali-adaptor.git] / 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" );
 }