Process events after application is resumed 99/167999/3
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 23 Jan 2018 09:44:19 +0000 (18:44 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 23 Jan 2018 14:44:06 +0000 (14:44 +0000)
Change-Id: I1db16e2792891d6c90a4b2deb5d8315afe68859d

dali/internal/adaptor/common/application-impl.cpp

index aa61d63..da1f3b6 100644 (file)
@@ -315,6 +315,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();
 }
 
 void Application::OnReset()