From: Jean-Philippe Andre Date: Sat, 17 Jan 2009 19:58:21 +0000 (+0100) Subject: Qt: on startup, if there is no input, show the cone X-Git-Tag: 1.0.0-pre1~1270 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4ce128c0b86f3a30472d0b03ebcd2643e87c7fb9;p=vlc Qt: on startup, if there is no input, show the cone --- diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp index c1ec98bee1..ab1f21251c 100644 --- a/modules/gui/qt4/input_manager.cpp +++ b/modules/gui/qt4/input_manager.cpp @@ -545,6 +545,12 @@ void InputManager::requestArtUpdate() playlist_AskForArtEnqueue( p_playlist, input_GetItem( p_input ), pl_Unlocked ); pl_Release( p_intf ); } + else + { + /* No input will signal the cover art to update, + * let's do it ourself */ + UpdateArt(); + } } void InputManager::UpdateArt()