Fix window hide/show() using withdrawn_set() 60/13460/1
authorManuel Bachmann <manuel.bachmann@eurogiciel.fr>
Thu, 5 Dec 2013 18:01:08 +0000 (19:01 +0100)
committerManuel Bachmann <manuel.bachmann@eurogiciel.fr>
Thu, 5 Dec 2013 18:01:08 +0000 (19:01 +0100)
Bug: https://bugs.tizen.org/jira/browse/TIVI-2048

Change-Id: Ib9abd47c93ed7484d694a3ceb88ce7b45951943a
Signed-off-by: Manuel Bachmann <manuel.bachmann@open.eurogiciel.org>
src/view/webkit/view_logic_scheme_support.cpp

index b1f680d..844dcb2 100644 (file)
@@ -60,7 +60,7 @@ bool SchemeSupport::HandleTizenScheme(const char* uri,
         return true;
     } else if (strncmp(uri, TIZEN_HIDE, strlen(TIZEN_HIDE)) == 0) {
         _D("%s : hide", uri);
-        elm_win_lower(window);
+        elm_win_withdrawn_set(window, EINA_TRUE);
         return true;
     } else if (strncmp(uri,
                        TIZEN_CHANGE_USERAGNET,