diff finch/libgnt/pygnt/example/rss/gntrss.py @ 18725:1aeda1e812a8

Make things look nice in both 80x25 and in large screens. Also, add a 'date' column in the items table. It'd be cool to make it configurable. Some more usability features.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 30 Jul 2007 20:25:38 +0000
parents 8b5082d54c1d
children 778f4fc8cbcc
line wrap: on
line diff
--- a/finch/libgnt/pygnt/example/rss/gntrss.py	Mon Jul 30 20:24:04 2007 +0000
+++ b/finch/libgnt/pygnt/example/rss/gntrss.py	Mon Jul 30 20:25:38 2007 +0000
@@ -173,6 +173,10 @@
         if self.timer == 0:
             self.timer = gobject.timeout_add(1000, self.check_thread_for_death)
 
+    def mark_read(self):
+        for item in self.items:
+            item.mark_unread(False)
+
 gobject.type_register(Feed)
 
 ##