elc_combobox: add/remove item doesn't resize container with genlist
authorVitalii Vorobiov <vi.vorobiov@samsung.com>
Tue, 5 Jul 2016 12:04:02 +0000 (15:04 +0300)
committerVitalii Vorobiov <vi.vorobiov@samsung.com>
Tue, 5 Jul 2016 12:09:20 +0000 (15:09 +0300)
recalculation of item count is getting only on a first load of combobox.
whenever user add more items, size of container with items doesn't getting more
place (provoking scroller to appear).
but its event more annoying when user delete items, then there are lots of
free spaces left that looks ridiculus

@fix

src/lib/elementary/elc_combobox.c

index c7f5ce0..7028deb 100644 (file)
@@ -186,6 +186,8 @@ _activate(Evas_Object *obj)
 
    sd->expanded = EINA_TRUE;
 
+   count_items_genlist(obj);
+
    if (sd->count <= 0) return;
 
    _table_resize(obj);