summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2e3d23c)
raw | patch | inline | side by side (parent: 2e3d23c)
author | Patrick Hallen <patrick.hallen@rwth-aachen.de> | |
Wed, 11 Feb 2009 19:30:27 +0000 (20:30 +0100) | ||
committer | Patrick Hallen <patrick.hallen@rwth-aachen.de> | |
Wed, 11 Feb 2009 19:30:27 +0000 (20:30 +0100) |
src/screen_artist.c | patch | blob | history |
diff --git a/src/screen_artist.c b/src/screen_artist.c
index 3b14e6bd7a90b0db0b45154bed930e25909fba31..0d81874f96c35d476450e34c1376f8abfbf27ec1 100644 (file)
--- a/src/screen_artist.c
+++ b/src/screen_artist.c
/* handled by browser_cmd() */
break;
}
+ case CMD_LIST_JUMP:
+ switch (mode) {
+ case LIST_ARTISTS:
+ screen_jump(browser.lw, artist_lw_callback, artist_list);
+ artist_repaint();
+ return true;
+
+ case LIST_ALBUMS:
+ screen_jump(browser.lw, artist_lw_callback, album_list);
+ artist_repaint();
+ return true;
+
+ case LIST_SONGS:
+ /* handled by browser_cmd() */
+ break;
+ }
break;