Gtk UI: Fix model column data types (bug 2008)

This commit is contained in:
Thomas Perl 2015-06-14 12:10:37 +02:00
parent 63e5c73337
commit e78ef01d5e

View file

@ -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