# HG changeset patch # User nenolod # Date 1137291044 28800 # Node ID 29abdef30cc6e787bc22e67ab9795ea0da0de6f0 # Parent e3070cc55ab20b90101ffdb25ab729836b636295 [svn] Ditto for playlist window. diff -r e3070cc55ab2 -r 29abdef30cc6 audacious/ui_playlist.c --- a/audacious/ui_playlist.c Sat Jan 14 18:09:54 2006 -0800 +++ b/audacious/ui_playlist.c Sat Jan 14 18:10:44 2006 -0800 @@ -1349,7 +1349,7 @@ case GDK_KP_7: if (playlist_get_current_length() != -1) bmp_playback_seek(CLAMP - (bmp_playback_get_time() - 5000, 0, + (bmp_playback_get_time() - 1000, 0, playlist_get_current_length()) / 1000); break; case GDK_Right: @@ -1357,7 +1357,7 @@ case GDK_KP_9: if (playlist_get_current_length() != -1) bmp_playback_seek(CLAMP - (bmp_playback_get_time() + 5000, 0, + (bmp_playback_get_time() + 1000, 0, playlist_get_current_length()) / 1000); break;