# HG changeset patch # User Ingo Weinzierl # Date 1283101848 -7200 # Node ID c89721a3f0f8611a1b87602178c806edfb17c826 # Parent 9c4e8ba3c4fa9529e80baa1c6572da6e4993b47f Bugfix: switching the time mode in ProjectList will also update the displayed total time in the footer of ProjectList. diff -r 9c4e8ba3c4fa -r c89721a3f0f8 ChangeLog --- a/ChangeLog Sat Aug 28 20:16:58 2010 +0200 +++ b/ChangeLog Sun Aug 29 19:10:48 2010 +0200 @@ -1,3 +1,8 @@ +2010-08-29 Ingo Weinzierl + + * getan/view.py: Bugfix: switching the time mode in ProjectList will also + update the displayed total time in the footer of ProjectList. + 2010-08-28 Ingo Weinzierl This commit introduces a new implementation of 'getan's user interface based diff -r 9c4e8ba3c4fa -r c89721a3f0f8 getan/view.py --- a/getan/view.py Sat Aug 28 20:16:58 2010 +0200 +++ b/getan/view.py Sun Aug 29 19:10:48 2010 +0200 @@ -211,6 +211,7 @@ logger.debug("ProjectList: switch time mode now.") for proj in self.rows: proj.switch_time_mode() + self._total_time() self.controller.view.loop.draw_screen() def unhandled_keypress(self, key):