Change Window::IsVisible() 89/205189/1
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 30 Apr 2019 06:24:23 +0000 (15:24 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 30 Apr 2019 06:24:25 +0000 (15:24 +0900)
- Window is visible if it is shown and deiconified.

Change-Id: Ice2e206b53859866333368da37a6da5df884a255

dali/internal/window-system/common/window-impl.cpp

index 564ff14..d4eb2ef 100644 (file)
@@ -397,7 +397,7 @@ void Window::Hide()
 
 bool Window::IsVisible() const
 {
-  return mVisible;
+  return mVisible && !mIconified;
 }
 
 unsigned int Window::GetSupportedAuxiliaryHintCount() const