diff options
author | sarbes <sarbes@kodi.tv> | 2024-08-19 23:14:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-19 23:14:07 +0200 |
commit | d7c38fd4efa16a83d2bed147e18f9d1987e72fbc (patch) | |
tree | 7902849b06ec4b5fd81a9940f0579220600ac54c | |
parent | 96c809a90e9e235747d03fe0a23e877b9a6f9876 (diff) | |
parent | fedc8c4975e940ed7216aeebed502fbb5b0f815a (diff) |
Merge pull request #25286 from sarbes/toggle-fix
Fix skin element "toggle button"
-rw-r--r-- | xbmc/guilib/GUIToggleButtonControl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/guilib/GUIToggleButtonControl.cpp b/xbmc/guilib/GUIToggleButtonControl.cpp index 650dc3df69..fff49051ae 100644 --- a/xbmc/guilib/GUIToggleButtonControl.cpp +++ b/xbmc/guilib/GUIToggleButtonControl.cpp @@ -38,6 +38,7 @@ void CGUIToggleButtonControl::Process(unsigned int currentTime, CDirtyRegionList m_selectButton.SetPulseOnSelect(m_pulseOnSelect); ProcessToggle(currentTime); m_selectButton.DoProcess(currentTime, dirtyregions); + CGUIControl::Process(currentTime, dirtyregions); } else CGUIButtonControl::Process(currentTime, dirtyregions); |