gui/playlist: Don't show Collection on startup

__gui_playlist_init_idle() will select the first visible playlist by
default, which is what we want.  Let's not override this by showing the
Collection later in this function.

Fixes #95: Startup shows Collection instead of Queued Tracks
Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
This commit is contained in:
Anna Schumaker 2016-09-28 09:31:33 -04:00
parent e25b8407b0
commit 9d279fe21e
2 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,7 @@
- Don't duplicate tracks in the library after a defrag
- Remove "Add New ..." menubutton and replace with Add Library Path button
- Various UI tweaks
- Fix showing the first playlist in the list
6.5.0-rc:
- Convert to CMake/CTest

View File

@ -321,7 +321,6 @@ bool __gui_playlist_init_idle()
p_filter_enable = true;
p_init_done = true;
gui_queue_show(gui_queue(playlist_get_queue(PL_SYSTEM, "Collection")));
return true;
}