summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJee-Yong Um <jc9.um@samsung.com>2014-12-23 09:52:44 +0900
committerChunEon Park <hermet@hermet.pe.kr>2014-12-23 09:52:44 +0900
commitaddb4c1973cbaf8d47b94f95ddfc327bab5a0b05 (patch)
treedf62c8017f060e6500af55b4c6378116d3b11c8d
parent1404fa9a1b295a3da337ed6b23f00c7d9efcd4b7 (diff)
downloadelementary-addb4c1973cbaf8d47b94f95ddfc327bab5a0b05.tar.gz
elm_colorselector: Fix layout broken in ELM_COLORSELECTOR_ALL mode
Summary: Fix layout broken in ELM_COLORSELECTOR_ALL mode due to missing part for layout sizing evaluation @fix Reviewers: Hermet Reviewed By: Hermet Subscribers: Hermet Differential Revision: https://phab.enlightenment.org/D1802
-rw-r--r--src/lib/elm_colorselector.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/elm_colorselector.c b/src/lib/elm_colorselector.c
index e0763a4ab..e53491bf5 100644
--- a/src/lib/elm_colorselector.c
+++ b/src/lib/elm_colorselector.c
@@ -1238,6 +1238,10 @@ _elm_colorselector_elm_layout_sizing_eval(Eo *obj, Elm_Colorselector_Data *sd)
_full_sizing_eval(obj);
break;
+ case ELM_COLORSELECTOR_ALL:
+ _full_sizing_eval(obj);
+ break;
+
default:
return;
}