Change Window::Raise() implementation 63/152663/2
authorHeeyong Song <heeyong.song@samsung.com>
Wed, 27 Sep 2017 00:30:13 +0000 (09:30 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 12 Oct 2017 16:21:44 +0000 (16:21 +0000)
Change-Id: I1e986802afc797ea85d63609eb6a866df34cda6c

adaptors/ecore/wayland/window-impl-ecore-wl.cpp

index d1ba238..12ec48c 100644 (file)
@@ -730,7 +730,8 @@ void Window::SetIndicatorActorRotation()
 
 void Window::Raise()
 {
-  ecore_wl_window_raise( mEventHandler->mEcoreWindow );
+  // Use ecore_wl_window_activate to prevent the window shown without rendering
+  ecore_wl_window_activate( mEventHandler->mEcoreWindow );
 }
 
 void Window::Lower()