diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2020-02-10 11:11:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 11:11:33 +0100 |
commit | 9b77063d40bd1a3d89e557313e8c24d4891c859b (patch) | |
tree | 973893f64ef25445907ca687a1a676219f3f6fdd | |
parent | 341f990a031e8d617cfc71945f6d658d711db335 (diff) | |
parent | d195c47a2925cbfe6119e154d5ebd134bb3de0ea (diff) |
Merge pull request #17357 from ksooo/pvr-fix-gridcontrol-messaging
[PVR] CGUIEPGGridContainer: Fix GUI_MSG_REFRESH_LIST message parameters.
-rw-r--r-- | xbmc/pvr/guilib/GUIEPGGridContainer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xbmc/pvr/guilib/GUIEPGGridContainer.cpp b/xbmc/pvr/guilib/GUIEPGGridContainer.cpp index c7d93c07d6..5b8ca6192f 100644 --- a/xbmc/pvr/guilib/GUIEPGGridContainer.cpp +++ b/xbmc/pvr/guilib/GUIEPGGridContainer.cpp @@ -2351,7 +2351,8 @@ void CGUIEPGGridContainer::HandleProgrammeGrid(bool bRender, unsigned int curren if (m_gridModel->FreeProgrammeMemory(firstChannel, lastChannel, firstBlock, lastBlock)) { // announce changed viewport - const CGUIMessage msg(GUI_MSG_REFRESH_LIST, GetID(), 0, static_cast<int>(PVREvent::Epg)); + const CGUIMessage msg( + GUI_MSG_REFRESH_LIST, GetParentID(), GetID(), static_cast<int>(PVREvent::Epg)); KODI::MESSAGING::CApplicationMessenger::GetInstance().SendGUIMessage(msg); } } |