diff options
author | Lars Op den Kamp <lars@opdenkamp.eu> | 2012-12-06 01:53:13 +0100 |
---|---|---|
committer | Lars Op den Kamp <lars@opdenkamp.eu> | 2012-12-06 01:53:13 +0100 |
commit | 20ad09e3fed38fb15f130cba2ea27845db6b4c9a (patch) | |
tree | 5b0ef2069457ee754f9da048efa4747d1f3b1674 | |
parent | bf602fe2d24b2e6a14f74eb3158e471aefd13b03 (diff) |
[pvr] fixed - timers on the home screen weren't always updated. closes #13656
-rw-r--r-- | xbmc/pvr/PVRGUIInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/pvr/PVRGUIInfo.cpp b/xbmc/pvr/PVRGUIInfo.cpp index 747414bf61..72c0528f4e 100644 --- a/xbmc/pvr/PVRGUIInfo.cpp +++ b/xbmc/pvr/PVRGUIInfo.cpp @@ -114,7 +114,7 @@ void CPVRGUIInfo::Stop(void) void CPVRGUIInfo::Notify(const Observable &obs, const ObservableMessage msg) { - if (msg == ObservableMessageTimers) + if (msg == ObservableMessageTimers || msg == ObservableMessageTimersReset) UpdateTimersCache(); } |