gui/scan_setup.cpp: in easeymenu mode, not allow start fastscan direct, without auto-diseqc configuration

Origin commit data
------------------
Commit: 60b1664057
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-10-23 (Thu, 23 Oct 2014)
This commit is contained in:
[CST] Focus
2014-10-23 18:20:22 +04:00
parent 9382250c10
commit 91ab55276f

View File

@@ -1449,9 +1449,11 @@ void CScanSetup::addScanMenuFastScan(CMenuWidget *fast_ScanMenu)
mf->setHint("", LOCALE_MENU_HINT_SCAN_FASTDISEQC);
fast_ScanMenu->addItem(mf);
mf = new CMenuForwarder(LOCALE_SCANTS_STARTNOW, allow_start, NULL, this, "sfast", CRCInput::RC_blue);
mf->setHint("", LOCALE_MENU_HINT_SCAN_START);
fast_ScanMenu->addItem(mf);
if (!g_settings.easymenu) {
mf = new CMenuForwarder(LOCALE_SCANTS_STARTNOW, allow_start, NULL, this, "sfast", CRCInput::RC_blue);
mf->setHint("", LOCALE_MENU_HINT_SCAN_START);
fast_ScanMenu->addItem(mf);
}
}
int CScanSetup::showFastscanDiseqcSetup()