cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=1334514cfea35ec95a5e25ebc007283e7a88b5c3
commit 1334514cfea35ec95a5e25ebc007283e7a88b5c3 Author: Mike Blumenkrantz <[email protected]> Date: Fri Aug 9 12:10:13 2019 -0400 efl_ui/popup: apply user min size hints during group_calc if these hints are set, they should be used Reviewed-by: Cedric BAIL <[email protected]> Differential Revision: https://phab.enlightenment.org/D9539 --- src/lib/elementary/efl_ui_popup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/efl_ui_popup.c b/src/lib/elementary/efl_ui_popup.c index f38e27cb74..2331b4468b 100644 --- a/src/lib/elementary/efl_ui_popup.c +++ b/src/lib/elementary/efl_ui_popup.c @@ -262,7 +262,7 @@ _sizing_eval(Eo *obj) /* trigger layout calc */ efl_canvas_group_calculate(efl_super(obj, MY_CLASS)); - min = efl_gfx_hint_size_restricted_min_get(obj); + min = efl_gfx_hint_size_combined_min_get(obj); Eina_Size2D size = efl_gfx_entity_size_get(obj); --
