Maemo 5: Don't show length in episode action dialog

The length is now shown in the list view, so there is
no need to show the length again in the actions dialog.
This commit is contained in:
Thomas Perl 2010-10-05 10:35:27 +02:00
parent 80290bc75e
commit 0ad4615aea

View file

@ -149,7 +149,6 @@ class gPodderEpisodeActions(BuilderWidget):
if self.episode.total_time > 0: if self.episode.total_time > 0:
play_button.set_title(self.action_play.props.label) play_button.set_title(self.action_play.props.label)
play_button.set_value(self.episode.get_play_info_string())
mark_new_button.set_active(not self.episode.is_played) mark_new_button.set_active(not self.episode.is_played)
mark_old_button.set_active(self.episode.is_played) mark_old_button.set_active(self.episode.is_played)
@ -197,7 +196,6 @@ class gPodderEpisodeActions(BuilderWidget):
if self.episode.total_time > 0: if self.episode.total_time > 0:
play_button.set_title(self.action_play.props.label) play_button.set_title(self.action_play.props.label)
play_button.set_value(self.episode.get_play_info_string())
keep_button.set_active(self.episode.is_locked) keep_button.set_active(self.episode.is_locked)
self.new_keep_value = self.episode.is_locked self.new_keep_value = self.episode.is_locked