Mercurial > audlegacy
changeset 2043:e211d52a3626 trunk
[svn] Seek controls (left and right) now seek 5 seconds like the main window
author | nazca |
---|---|
date | Mon, 04 Dec 2006 01:26:08 -0800 |
parents | 0985452d1962 |
children | 7d8bb80e3a40 |
files | ChangeLog audacious/ui_playlist.c |
diffstat | 2 files changed, 14 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Dec 04 01:23:15 2006 -0800 +++ b/ChangeLog Mon Dec 04 01:26:08 2006 -0800 @@ -1,3 +1,15 @@ +2006-12-04 09:23:15 +0000 William Pitcock <nenolod@nenolod.net> + revision [3087] + - clean up some internal audacious controlsocket functions + - document the controlsocket API + + trunk/audacious/controlsocket.c | 4 + trunk/doc/libaudacious/tmpl/beepctrl.sgml | 4 + trunk/libaudacious/beepctrl.c | 576 +++++++++++++++++++++++++++++- + trunk/libaudacious/beepctrl.h | 2 + 4 files changed, 570 insertions(+), 16 deletions(-) + + 2006-12-04 09:01:13 +0000 Daniel Bradshaw <nazca@atheme.org> revision [3085] Added to credits :P
--- a/audacious/ui_playlist.c Mon Dec 04 01:23:15 2006 -0800 +++ b/audacious/ui_playlist.c Mon Dec 04 01:26:08 2006 -0800 @@ -1443,7 +1443,7 @@ case GDK_KP_7: if (playlist_get_current_length() != -1) bmp_playback_seek(CLAMP - (bmp_playback_get_time() - 1000, 0, + (bmp_playback_get_time() - 5000, 0, playlist_get_current_length()) / 1000); break; case GDK_Right: @@ -1451,7 +1451,7 @@ case GDK_KP_9: if (playlist_get_current_length() != -1) bmp_playback_seek(CLAMP - (bmp_playback_get_time() + 1000, 0, + (bmp_playback_get_time() + 5000, 0, playlist_get_current_length()) / 1000); break;