Mercurial > audlegacy
changeset 2048:7bc2489db782 trunk
[svn] Numpad 4 and 6 liked to prev and next respectively to be more consistant with the main window
author | nazca |
---|---|
date | Mon, 04 Dec 2006 01:46:09 -0800 |
parents | 545494a9c048 |
children | 5cf8de9f2c28 |
files | ChangeLog audacious/ui_playlist.c |
diffstat | 2 files changed, 18 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@nenolod.net> + 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 <nenolod@nenolod.net> revision [3095] - bleah, put dirbrowser back
--- 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();