diff options
author | Max Kellermann <max@duempel.org> | 2008-11-18 21:51:57 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-18 21:51:57 +0100 |
commit | 299a27c8dee0e7eeab3448ed7cdfe1ac7c97ebaf (patch) | |
tree | 45768e3972318fb475c65a5866c5bbedd09da8a3 /src/screen_browser.c | |
parent | ebb9e5b1924e6bc5baaae9ced82b54be586f6b74 (diff) | |
download | mpd-299a27c8dee0e7eeab3448ed7cdfe1ac7c97ebaf.tar.gz mpd-299a27c8dee0e7eeab3448ed7cdfe1ac7c97ebaf.tar.xz mpd-299a27c8dee0e7eeab3448ed7cdfe1ac7c97ebaf.zip |
command: added CMD_LOCATE to locate song in database
Pressing 'l' switches to the file browser (screen_file) and locates
the previously selected song in the server's database.
Diffstat (limited to 'src/screen_browser.c')
-rw-r--r-- | src/screen_browser.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/screen_browser.c b/src/screen_browser.c index 6a5bbd233..63e8c1c71 100644 --- a/src/screen_browser.c +++ b/src/screen_browser.c @@ -531,6 +531,15 @@ browser_cmd(struct screen_browser *browser, return true; #endif + case CMD_LOCATE: + entry = browser_get_selected(browser); + if (entry == NULL || entry->entity == NULL || + entry->entity->type != MPD_INFO_ENTITY_TYPE_SONG) + return false; + + screen_file_goto_song(c, entry->entity->info.song); + return true; + #ifdef ENABLE_LYRICS_SCREEN case CMD_SCREEN_LYRICS: entry = browser_get_selected(browser); |