Skip to content

Commit

Permalink
Gtk UI: Fix model column data types (bug 2008)
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed Jun 14, 2015
1 parent 63e5c73 commit e78ef01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpodder/gtkui/model.py
Expand Up @@ -125,7 +125,7 @@ class EpisodeListModel(gtk.ListStore):
def __init__(self, config, on_filter_changed=lambda has_episodes: None):
gtk.ListStore.__init__(self, str, str, str, object, \
str, str, str, str, bool, bool, bool, \
gobject.TYPE_INT64, int, str, bool, int, bool)
gobject.TYPE_INT64, gobject.TYPE_INT64, str, bool, gobject.TYPE_INT64, bool)

self._config = config

Expand Down

0 comments on commit e78ef01

Please sign in to comment.