kuuko pushed a commit to branch master. http://git.enlightenment.org/apps/epour.git/commit/?id=a46a13a3bfdaf0bf64b3a6caac8a792e095d35e1
commit a46a13a3bfdaf0bf64b3a6caac8a792e095d35e1 Author: Kai Huuhko <kai.huu...@gmail.com> Date: Fri Nov 8 14:03:57 2013 +0200 Re-enable Genlist homogeneous mode. --- epour/gui/Main.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/epour/gui/Main.py b/epour/gui/Main.py index 1a7bbf9..ee7614a 100644 --- a/epour/gui/Main.py +++ b/epour/gui/Main.py @@ -125,17 +125,10 @@ class MainInterface(object): tb.show() self.tlist = tlist = Genlist(win) - # - # XXX: Find out why the torrent list weirds out when there are more - # than seven items in it. This may be an initialization problem, - # or a bug in Genlist. - # - # Homogeneous mode triggers it - # tlist.select_mode = ELM_OBJECT_SELECT_MODE_NONE tlist.mode = ELM_LIST_COMPRESS tlist.callback_activated_add(self.item_activated_cb) - #tlist.homogeneous_set(True) + tlist.homogeneous = True tlist.size_hint_weight = 1.0, 1.0 tlist.size_hint_align = -1.0, -1.0 tlist.show() --