From 89f638827ea90a618df768adcac0026bc9eb3279 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 25 Nov 2009 21:14:37 +0000 Subject: [PATCH] Temp fix for genlist horizontal resize lag by commenting out horizontal_mode_set(ELM_LIST_LIMIT). SVN revision: 43994 --- legacy/elementary/src/bin/test_genlist.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/legacy/elementary/src/bin/test_genlist.c b/legacy/elementary/src/bin/test_genlist.c index 6e52246d1b..5daea7985b 100644 --- a/legacy/elementary/src/bin/test_genlist.c +++ b/legacy/elementary/src/bin/test_genlist.c @@ -88,7 +88,9 @@ test_genlist(void *data, Evas_Object *obj, void *event_info) evas_object_show(bx); gl = elm_genlist_add(win); - elm_genlist_horizontal_mode_set(gl, ELM_LIST_LIMIT); + // FIXME: This causes genlist to resize the horiz axis very slowly :( + // Reenable this and resize the window horizontally, then try to resize it back + //elm_genlist_horizontal_mode_set(gl, ELM_LIST_LIMIT); evas_object_size_hint_weight_set(gl, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(gl, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_box_pack_end(bx, gl);