diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | displaymenu.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -141,3 +141,4 @@ Version 0.0.7: is available - display all jpegs in a recording folder in detailed recording view - Fixed a bug that Setup option narrowRecordingMenu was not stored +- Fixed displaying remotetimers in main menu diff --git a/displaymenu.c b/displaymenu.c index de8bdfb..78c60da 100644 --- a/displaymenu.c +++ b/displaymenu.c @@ -96,7 +96,7 @@ void cNopacityDisplayMenu::DrawTimers(bool timersChanged, int numConflicts) { if (initial || ((menuCategoryLast!=mcMain)&&(MenuCategory()==mcMain)&&!timersDrawn)) { if (timersChanged) { //check if remotetimers plugin is available - static cPlugin* pRemoteTimers = cPluginManager::CallFirstService("RemoteTimers::RefreshTimers-v1.0", NULL); + static cPlugin* pRemoteTimers = cPluginManager::GetPlugin("remotetimers"); bool drawRemoteTimers = false; cString errorMsg; if (pRemoteTimers) { |