Mercurial > audlegacy
diff audacious/ui_playlist.c @ 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 | e211d52a3626 |
children | 8feb3d69b5be |
line wrap: on
line diff
--- 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();