Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/journal/listview.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jarabe/journal/listview.py')
-rw-r--r--src/jarabe/journal/listview.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jarabe/journal/listview.py b/src/jarabe/journal/listview.py
index 2e67527..c040681 100644
--- a/src/jarabe/journal/listview.py
+++ b/src/jarabe/journal/listview.py
@@ -243,6 +243,12 @@ class BaseListView(Gtk.Bin):
if buddy is None:
cell.props.visible = False
return
+ # FIXME workaround for pygobject bug, see
+ # https://bugzilla.gnome.org/show_bug.cgi?id=689277
+ #
+ # add_attribute with 'buddy' attribute in the cell should take
+ # care of setting it.
+ cell.props.buddy = buddy
progress = tree_model[tree_iter][ListModel.COLUMN_PROGRESS]
cell.props.visible = progress >= 100