From 9d279fe21e6482209ffe151495a3bfc429650cc5 Mon Sep 17 00:00:00 2001 From: Anna Schumaker Date: Wed, 28 Sep 2016 09:31:33 -0400 Subject: [PATCH] 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 --- CHANGELOG | 1 + gui/playlist.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index cf85506a..2e5e8a6c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/gui/playlist.c b/gui/playlist.c index 401ef845..9af829ba 100644 --- a/gui/playlist.c +++ b/gui/playlist.c @@ -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; }