ocarina: Use "N" for going to previous track

This matches the vim keybinding, which explains why I kept trying to use
it instead of "p"...

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
This commit is contained in:
Bryan Schumaker 2012-04-09 08:02:16 -04:00
parent b2c17bd54a
commit 6f69392e5f
1 changed files with 2 additions and 2 deletions

View File

@ -83,9 +83,9 @@ static gboolean key_pressed(GtkWidget *widget, GdkEvent *event, gpointer data)
ocarina::playlist::switch_to_library();
else if (key == "r" || key == "R")
ocarina::playlist::switch_to_recent();
else if (key == "n" || key == "N")
else if (key == "n")
libsaria::deck::next();
else if (key == "p" || key == "P")
else if (key == "N")
libsaria::deck::prev();
else if (key == "space")
libsaria::audio::toggle_play();