From b4745a552eb303789c01c78ea461acee6916d392 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Mon, 23 Aug 2010 23:27:30 +0200 Subject: [PATCH] Fix sorting in episode remove dialog (bug 1118) The "Size" and "Playcount" columns sort correctly now. --- src/gpodder/gtkui/desktop/sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gpodder/gtkui/desktop/sync.py b/src/gpodder/gtkui/desktop/sync.py index 331a087a..c6441628 100644 --- a/src/gpodder/gtkui/desktop/sync.py +++ b/src/gpodder/gtkui/desktop/sync.py @@ -223,9 +223,9 @@ class gPodderSyncUI(object): columns = ( ('title', None, None, _('Episode')), ('podcast', None, None, _('Podcast')), - ('filesize', None, None, _('Size')), + ('filesize', 'length', int, _('Size')), ('modified', 'modified_sort', int, _('Copied')), - ('playcount', None, None, _('Play count')), + ('playcount', 'playcount', int, _('Play count')), ('released', None, None, _('Released')), ) -- 2.11.4.GIT