From 173814b8a381c7156cdfa4e8c8b9600a534ea33c Mon Sep 17 00:00:00 2001 From: gixxpunk Date: Thu, 18 May 2017 08:40:33 +0200 Subject: [PATCH] CVFD: do not show "save epg" in standby Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/1f221f13e639d80191dd373f8f4a025f8eee9070 Author: gixxpunk Date: 2017-05-18 (Thu, 18 May 2017) Origin message was: ------------------ - CVFD: do not show "save epg" in standby ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/neutrino.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 702df0427..42d4f51c0 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -4029,9 +4029,11 @@ void CNeutrinoApp::saveEpg(bool cvfd_mode) } printf("[neutrino] Saving EPG to %s...\n", g_settings.epg_dir.c_str()); - CVFD::getInstance()->Clear(); - //NI CVFD::getInstance()->setMode(CVFD::MODE_TVRADIO); - CVFD::getInstance()->ShowText(g_Locale->getText(LOCALE_EPG_SAVING)); + if(!cvfd_mode){ + CVFD::getInstance()->Clear(); + //NI CVFD::getInstance()->setMode(CVFD::MODE_TVRADIO); + CVFD::getInstance()->ShowText(g_Locale->getText(LOCALE_EPG_SAVING)); + } g_Sectionsd->writeSI2XML(g_settings.epg_dir.c_str());