From: Jaehyun Cho Date: Fri, 28 Jun 2013 05:22:19 +0000 (+0900) Subject: [naviframe] Fix not to slide title if title is invisible (hidden) X-Git-Tag: submit/tizen/20131004.114939~79 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b94724b429b923ec8ec341dcddc64bf5cfd38064;p=platform%2Fcore%2Fuifw%2Fefl-theme-tizen.git [naviframe] Fix not to slide title if title is invisible (hidden) Change-Id: If1282c79f493742501189e74fd04066b1f867b11 --- diff --git a/themes/widgets/naviframe.edc b/themes/widgets/naviframe.edc index 7dbe5c7..b4030f2 100644 --- a/themes/widgets/naviframe.edc +++ b/themes/widgets/naviframe.edc @@ -167,6 +167,11 @@ public start_slide(val) { new Float:len; new buf[128]; + new st[31]; + new Float:vl; + get_state(PART:"title_bg", st, 30, vl); + if (!strcmp(st, "hide")) + return; // Title Text if (val == 0) { @@ -1928,6 +1933,11 @@ public start_slide(val) { new Float:len; new buf[128]; + new st[31]; + new Float:vl; + get_state(PART:"title_bg", st, 30, vl); + if (!strcmp(st, "hide")) + return; set_int(title_slide_count, get_int(title_slide_count) + 1);