diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2022-09-27 08:47:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 08:47:50 +0200 |
commit | 9b648b4144e3023192270a6f6e142f7d80934c28 (patch) | |
tree | 01a52216cf9f0738d0e8012c7f46883a053b100a | |
parent | aac12f6fc42510b9fed6aea9cbfa9f07c41e379e (diff) | |
parent | 45c4ff4c4491f684ef0ef7738ddae96c7a5d665b (diff) |
Merge pull request #21878 from ksooo/pvr-fix-selection-dialog-init-matrix
[Matrix][PVR] InstantRecordingActionSelector must reset selection dialog befo…
-rw-r--r-- | xbmc/pvr/guilib/PVRGUIActions.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/pvr/guilib/PVRGUIActions.cpp b/xbmc/pvr/guilib/PVRGUIActions.cpp index 2d594e3543..805840896f 100644 --- a/xbmc/pvr/guilib/PVRGUIActions.cpp +++ b/xbmc/pvr/guilib/PVRGUIActions.cpp @@ -525,6 +525,7 @@ namespace PVR { if (m_pDlgSelect) { + m_pDlgSelect->Reset(); m_pDlgSelect->SetMultiSelection(false); m_pDlgSelect->SetHeading(CVariant{19086}); // Instant recording action } |