summaryrefslogtreecommitdiff
path: root/components/music
diff options
context:
space:
mode:
authorGene Z. Ragan <gzr@eazel.com>2000-12-07 23:39:46 +0000
committerGene Ragan <gzr@src.gnome.org>2000-12-07 23:39:46 +0000
commitfbd10312a2fd063c769a17282524bdfa79c5aa24 (patch)
tree042ccb423d706ba1f2f3bb2703f983fa044218b8 /components/music
parente80fa279b1677e5ece0397719f2d3e75dd37df6f (diff)
downloadnautilus-fbd10312a2fd063c769a17282524bdfa79c5aa24.tar.gz
Enabled the jump to next feature. This should be the last missing feature
2000-12-07 Gene Z. Ragan <gzr@eazel.com> Enabled the jump to next feature. This should be the last missing feature enabled that was lost during the brain salad surgery. * components/music/nautilus-music-view.c: (get_player_state):
Diffstat (limited to 'components/music')
-rw-r--r--components/music/nautilus-music-view.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/components/music/nautilus-music-view.c b/components/music/nautilus-music-view.c
index f96993e46..0f68cc60b 100644
--- a/components/music/nautilus-music-view.c
+++ b/components/music/nautilus-music-view.c
@@ -1796,8 +1796,7 @@ stop_playing_file (NautilusMusicView *music_view)
static PlayerState
get_player_state (NautilusMusicView *music_view)
{
- if (music_view->details->player_state == PLAYER_PLAYING && esdout_playing ()
- && (esdout_get_output_time () + 500) >= music_view->details->current_duration) {
+ if (music_view->details->player_state == PLAYER_PLAYING && !esdout_playing ()) {
music_view->details->player_state = PLAYER_NEXT;
}