diff options
author | Martijn Kaijser <martijn@xbmc.org> | 2017-01-19 20:45:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-19 20:45:42 +0100 |
commit | 53a5c83aaf37b58149ab1e815a220866cdae3709 (patch) | |
tree | 415650f588a911489c31f617712a782569f701e6 | |
parent | ca4964523dab30da4c36c9c4b64794b24e7d0405 (diff) | |
parent | 3230797c6f7c74c141ccb847bb9ab6c362af9409 (diff) |
Merge pull request #11489 from DaveTBlake/ClearPluginCache
[Fix]Clear plugin directory cache on window init Ticket #16560
-rw-r--r-- | xbmc/windows/GUIMediaWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/windows/GUIMediaWindow.cpp b/xbmc/windows/GUIMediaWindow.cpp index aaa956b0a1..896102f3f6 100644 --- a/xbmc/windows/GUIMediaWindow.cpp +++ b/xbmc/windows/GUIMediaWindow.cpp @@ -511,7 +511,7 @@ bool CGUIMediaWindow::OnMessage(CGUIMessage& message) } if (message.GetParam2() == PLUGIN_REFRESH_DELAY) { - Refresh(); + Refresh(true); SetInitialVisibility(); RestoreControlStates(); SetInitialVisibility(); |