From: Mike Blumenkrantz Date: Fri, 26 Feb 2016 17:40:56 +0000 (-0500) Subject: list test: use 1.0 instead of EVAS_HINT_EXPAND X-Git-Tag: upstream/1.20.0~7116^2~14^2~108 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3316520c238febff2df64bea7da8d060b9fec42e;p=platform%2Fupstream%2Fefl.git list test: use 1.0 instead of EVAS_HINT_EXPAND these are functionally identical but semantically different --- diff --git a/legacy/elementary/src/bin/test_list.c b/legacy/elementary/src/bin/test_list.c index 8f72e4b..f02df5c 100644 --- a/legacy/elementary/src/bin/test_list.c +++ b/legacy/elementary/src/bin/test_list.c @@ -371,7 +371,7 @@ test_list(void *data EINA_UNUSED, snprintf(buf, sizeof(buf), "%s/images/logo_small.png", elm_app_data_dir_get()); elm_image_file_set(ic, buf, NULL); elm_image_resizable_set(ic, EINA_FALSE, EINA_FALSE); - evas_object_size_hint_align_set(ic, 0.0, EVAS_HINT_EXPAND); + evas_object_size_hint_align_set(ic, 0.0, 1.0); elm_box_pack_end(bx, ic); evas_object_show(ic); elm_list_item_append(li, "are", bx, NULL, NULL, NULL);