Skip to content

Commit

Permalink
Maemo 5: Don't show length in episode action dialog
Browse files Browse the repository at this point in the history
The length is now shown in the list view, so there is
no need to show the length again in the actions dialog.
  • Loading branch information
thp committed Oct 5, 2010
1 parent 80290bc commit 0ad4615
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/gpodder/gtkui/frmntl/episodeactions.py
Expand Up @@ -149,7 +149,6 @@ def create_ui_not_downloaded(self):

if self.episode.total_time > 0:
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_old_button.set_active(self.episode.is_played)
Expand Down Expand Up @@ -197,7 +196,6 @@ def create_ui_downloaded(self):

if self.episode.total_time > 0:
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)
self.new_keep_value = self.episode.is_locked
Expand Down

0 comments on commit 0ad4615

Please sign in to comment.