From 420edbebea154da63c860873cf65908f55f893fc Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Tue, 23 Jan 2018 18:44:19 +0900 Subject: [PATCH] Process events after application is resumed Change-Id: I1db16e2792891d6c90a4b2deb5d8315afe68859d --- adaptors/common/application-impl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/adaptors/common/application-impl.cpp b/adaptors/common/application-impl.cpp index 0a978a6..e6424c5 100644 --- a/adaptors/common/application-impl.cpp +++ b/adaptors/common/application-impl.cpp @@ -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" ); } -- 2.7.4