From 3316520c238febff2df64bea7da8d060b9fec42e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 26 Feb 2016 12:40:56 -0500 Subject: [PATCH] list test: use 1.0 instead of EVAS_HINT_EXPAND these are functionally identical but semantically different --- legacy/elementary/src/bin/test_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/bin/test_list.c b/legacy/elementary/src/bin/test_list.c index 8f72e4bb21..f02df5c4a1 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);