From 6198a46e7cc1a9aae80a5522f6a89a55ccec04df Mon Sep 17 00:00:00 2001 From: Heeyong Song Date: Tue, 25 Jun 2019 15:26:25 +0900 Subject: [PATCH] [Tizen] Call RequestUpdateOnce in OnWindowShown() Rendering should be done when a window is shown. But the Adaptor may be in the running state (when other windows are shown). So call RequestUpdateOnce() in that case. Change-Id: I5c3725fd171c0d93fdfbf00362e239fb66716fb6 --- dali/internal/adaptor/common/adaptor-impl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dali/internal/adaptor/common/adaptor-impl.cpp b/dali/internal/adaptor/common/adaptor-impl.cpp index 4dc5ffc..0f306c0 100755 --- a/dali/internal/adaptor/common/adaptor-impl.cpp +++ b/dali/internal/adaptor/common/adaptor-impl.cpp @@ -847,6 +847,9 @@ void Adaptor::OnWindowShown() } else { + // Force a render task + RequestUpdateOnce(); + DALI_LOG_RELEASE_INFO( "Adaptor::OnWindowShown: Adaptor is not paused state.[%d]\n", mState ); } } -- 2.7.4