From 7570a20702bed9475a22efb938a9f9f0e939216b Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Fri, 13 Aug 2010 16:22:43 +0000 Subject: [PATCH] fix comment git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@722 e54a6e83-5905-42d5-8d5c-058d10e6a962 Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/80f25129a0287ad2229045811ad6c315316b7c79 Author: Jacek Jendrzej Date: 2010-08-13 (Fri, 13 Aug 2010) Origin message was: ------------------ -fix comment git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@722 e54a6e83-5905-42d5-8d5c-058d10e6a962 --- src/neutrino_menue.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/neutrino_menue.cpp b/src/neutrino_menue.cpp index e3dd3e93a..63a1cea6d 100644 --- a/src/neutrino_menue.cpp +++ b/src/neutrino_menue.cpp @@ -1658,12 +1658,13 @@ void CNeutrinoApp::InitMiscSettings(CMenuWidget &miscSettings) miscSettingsGeneral->addItem(new CMenuOptionChooser(LOCALE_EXTRA_CACHE_TXT, (int *)&g_settings.cacheTXT, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true)); //miscSettings.addItem(new CMenuForwarder(LOCALE_EXTRA_KEY_PLUGIN, true, g_settings.onekey_plugin,this,"onekeyplugin")); - //don't show rotor and fan speed settings on cable box and NEO + //don't show fan speed settings on cable box and NEO funNotifier = new CFanControlNotifier(); if (g_info.delivery_system == DVB_S && (cs_get_revision() < 8)) { miscSettingsGeneral->addItem(new CMenuOptionNumberChooser(LOCALE_FAN_SPEED, &g_settings.fan_speed, true, 1, 14, funNotifier, 0, 0, LOCALE_OPTIONS_OFF) ); funNotifier->changeNotify(NONEXISTANT_LOCALE, (void*) &g_settings.fan_speed); } + //don't show rotor settings on cable box if (g_info.delivery_system == DVB_S) { miscSettingsGeneral->addItem(new CMenuOptionChooser(LOCALE_EXTRA_ROTORSWAP, &g_settings.rotor_swap, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true)); }