summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHosang Kim <hosang12.kim@samsung.com>2017-04-03 17:23:08 +0900
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2017-04-05 00:14:55 -0700
commit93ff8e15fb84c955254cf1e0fa0c818dbc6fa844 (patch)
treedb1214b19206ffbbe6e28f897af9b989fd20cd2f
parentd8d472ea24b29cd67d08e1365395542ffb4c66bf (diff)
downloadefl-theme-tizen-mobile-93ff8e15fb84c955254cf1e0fa0c818dbc6fa844.tar.gz
efl-theme-tizen-mobile-93ff8e15fb84c955254cf1e0fa0c818dbc6fa844.tar.bz2
efl-theme-tizen-mobile-93ff8e15fb84c955254cf1e0fa0c818dbc6fa844.zip
conform: Deprecated BG_TRANSPARENT type.submit/tizen/20170406.055746
Change-Id: Ic8132f337e1ca9c882467d2ae117fa912c591657
-rw-r--r--mobile/widgets/conform.edc5
1 files changed, 2 insertions, 3 deletions
diff --git a/mobile/widgets/conform.edc b/mobile/widgets/conform.edc
index dd4e2d0f..526436d3 100644
--- a/mobile/widgets/conform.edc
+++ b/mobile/widgets/conform.edc
@@ -443,6 +443,7 @@ group { name: "elm/conformant/base/default";
if (get_int(indicator_mode) == INDICATOR_MODE_SHOW) {
if (get_int(indicator_rotation) == INDICATOR_ROTATION_PORTRAIT) {
if ((get_int(indicator_opacity) == INDICATOR_OPACITY_OPAQUE) ||
+ (get_int(indicator_opacity) == INDICATOR_OPACITY_BGTRANSPARENT) ||
(get_int(indicator_opacity) == INDICATOR_OPACITY_UNKNOWN)) {
set_state(PART:"indicator_base", "default", 0.0);
set_state(PART:"indicator_adapter", "default", 0.0);
@@ -477,9 +478,6 @@ group { name: "elm/conformant/base/default";
} else if (get_int(indicator_opacity) == INDICATOR_OPACITY_TRANSLUCENT) {
set_state(PART:"indicator_bg", "translucent", 0.0);
set_state(PART:"elm.swallow.indicator_bg", "transparent", 0.0);
- } else if (get_int(indicator_opacity) == INDICATOR_OPACITY_BGTRANSPARENT) {
- set_state(PART:"indicator_bg", "transparent", 0.0);
- set_state(PART:"elm.swallow.indicator_bg", "transparent", 0.0);
} else { // OPAQUE here
set_state(PART:"indicator_bg", "default", 0.0);
set_state(PART:"elm.swallow.indicator_bg", "default", 0.0);
@@ -490,6 +488,7 @@ group { name: "elm/conformant/base/default";
}
// legacy support
if (get_int(overlap_mode) == 1 ) {
+ set_state(PART:"indicator_base", "hide", 0.0);
set_state(PART:"overlap_clipper", "overlap", 0.0);
} else {
set_state(PART:"overlap_clipper", "default", 0.0);