summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_factory.c
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-06-09 16:29:40 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2016-06-09 16:37:49 +0900
commit37625fca91c41d549ae8eca5b1609717599af5d4 (patch)
tree88fc2d79e27b131fb865736f5f24dfcc68a7bf6d /src/lib/elementary/elm_factory.c
parent44f445fe76b24f6f1f62669693ba4723d37d9390 (diff)
downloadefl-37625fca91c41d549ae8eca5b1609717599af5d4.tar.gz
Evas/Edje/Elm: Use combined_min instead of min everywhere
This allows apps to set the objects min size with hint_min, while letting the rest of EFL define the minimum size with rstricted_min. I don't like the property names much...
Diffstat (limited to 'src/lib/elementary/elm_factory.c')
-rw-r--r--src/lib/elementary/elm_factory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_factory.c b/src/lib/elementary/elm_factory.c
index 212f5121b0..d9bb11b3ad 100644
--- a/src/lib/elementary/elm_factory.c
+++ b/src/lib/elementary/elm_factory.c
@@ -87,7 +87,7 @@ _sizing_eval(Evas_Object *obj)
if (!wd) return;
if (!wd->content) return;
- evas_object_size_hint_min_get(wd->content, &minw, &minh);
+ efl_gfx_size_hint_combined_min_get(wd->content, &minw, &minh);
evas_object_size_hint_max_get(wd->content, &maxw, &maxh);
if (wd->maxmin)
{