# HG changeset patch # User nazca # Date 1165225569 28800 # Node ID 7bc2489db782ad052c71725e4a530aca102b68a6 # Parent 545494a9c048231a8f012c08d7b3bb444a364c80 [svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window diff -r 545494a9c048 -r 7bc2489db782 ChangeLog --- a/ChangeLog Mon Dec 04 01:44:20 2006 -0800 +++ b/ChangeLog Mon Dec 04 01:46:09 2006 -0800 @@ -1,3 +1,15 @@ +2006-12-04 09:44:20 +0000 William Pitcock + revision [3097] + - remove xml_document.c + + trunk/doc/libaudacious/libaudacious-main.sgml | 2 + trunk/doc/libaudacious/tmpl/xml_document.sgml | 224 ------------------ + trunk/libaudacious/Makefile | 5 + trunk/libaudacious/xml_document.c | 313 -------------------------- + trunk/libaudacious/xml_document.h | 90 ------- + 5 files changed, 3 insertions(+), 631 deletions(-) + + 2006-12-04 09:39:52 +0000 William Pitcock revision [3095] - bleah, put dirbrowser back diff -r 545494a9c048 -r 7bc2489db782 audacious/ui_playlist.c --- a/audacious/ui_playlist.c Mon Dec 04 01:44:20 2006 -0800 +++ b/audacious/ui_playlist.c Mon Dec 04 01:46:09 2006 -0800 @@ -1454,6 +1454,12 @@ (bmp_playback_get_time() + 5000, 0, playlist_get_current_length()) / 1000); break; + case GDK_KP_4: + playlist_prev(); + break; + case GDK_KP_6: + playlist_next(); + break; case GDK_Escape: mainwin_minimize_cb();