Mercurial > hg > Feedworm
diff MainWindow.py @ 59:daa2731967fe
Marking all articles in a feed as read doesn't toggle any more ... it marks all articles as read.
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Fri, 23 Jul 2010 17:29:22 +0200 |
parents | c82f5538733c |
children | d063e4814357 |
line wrap: on
line diff
--- a/MainWindow.py Fri Jul 23 17:24:32 2010 +0200 +++ b/MainWindow.py Fri Jul 23 17:29:22 2010 +0200 @@ -69,8 +69,8 @@ self.session.commit() self.ui.feedList.update() - def toggleReadOnSelectedFeed(self): - self.selectedFeed.toggleRead() + def markSelectedFeedRead(self): + self.selectedFeed.markAllEntriesRead() self.session.commit() self.ui.feedEntryList.update()