As a new user of gPodder, first off I'd like to thank everybody for
their hard work -- this project is exactly what I was looking for.

I noticed that the 'channel' column doesn't sort (and that this was a
TO-DO), so I decided to try my hand at a simple fix. It's just two
lines and it won't automatically sort when gPodder starts up, but it's
a start.

Thanks!
--- revision-478/src/gpodder/gui.py	2007-12-03 13:19:48.000000000 -0800
+++ gui.py	2007-12-03 13:20:24.000000000 -0800
@@ -192,6 +192,9 @@
         namecolumn.pack_start( iconcell, False)
         namecolumn.add_attribute( iconcell, 'pixbuf', 3)
 
+	namecolumn.set_sort_column_id(1)
+	namecolumn.set_sort_indicator(True)
+
         self.treeChannels.append_column( namecolumn)
 
         # enable alternating colors hint
_______________________________________________
gpodder-devel mailing list
[email protected]
https://lists.berlios.de/mailman/listinfo/gpodder-devel

Reply via email to