jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=2ee389c54bbab49d8a3124d455125393d4b07aa7
commit 2ee389c54bbab49d8a3124d455125393d4b07aa7 Author: Jean-Philippe Andre <jp.an...@samsung.com> Date: Wed Jul 12 10:55:44 2017 +0900 Revert "colorselector: Avoid API call on NULL object" This reverts commit b156f606e4fefb9b1d3ac0ca6d180e0d70e0140c. The change should have been in EO itself. See the previous patch. Ref T5715 --- src/lib/elementary/elm_colorselector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_colorselector.c b/src/lib/elementary/elm_colorselector.c index 5f6d9c1ea3..5744118ed4 100644 --- a/src/lib/elementary/elm_colorselector.c +++ b/src/lib/elementary/elm_colorselector.c @@ -1507,7 +1507,7 @@ _elm_colorselector_elm_layout_sizing_eval(Eo *obj, Elm_Colorselector_Data *sd) return; } - if (sd->palette_box) efl_pack_layout_request(sd->palette_box); + efl_pack_layout_request(sd->palette_box); edje_object_size_min_calc(wd->resize_obj, &minw, &minh); evas_object_size_hint_min_set(obj, minw, minh); } --