From c8b55726730f6de0bd26013ea9ceb4cb54618e4e Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 30 Jan 2022 14:28:17 +0100 Subject: [PATCH] lcd4l_setup: disable screenshot menu entry --- src/gui/lcd4l_setup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/lcd4l_setup.cpp b/src/gui/lcd4l_setup.cpp index 16b6fdfd9..4939d3a9d 100644 --- a/src/gui/lcd4l_setup.cpp +++ b/src/gui/lcd4l_setup.cpp @@ -221,11 +221,11 @@ int CLCD4lSetup::show() mc = new CMenuOptionChooser(LOCALE_LCD4L_CONVERT, &g_settings.lcd4l_convert, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, NULL, CRCInput::convertDigitToKey(shortcut++)); mc->setHint(NEUTRINO_ICON_HINT_LCD4LINUX, LOCALE_MENU_HINT_LCD4L_CONVERT); lcd4lSetup->addItem(mc); - +#if 0 mc = new CMenuOptionChooser(LOCALE_LCD4L_SCREENSHOTS, &temp_lcd4l_screenshots, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, NULL, CRCInput::convertDigitToKey(shortcut++)); mc->setHint(NEUTRINO_ICON_HINT_LCD4LINUX, LOCALE_MENU_HINT_LCD4L_SCREENSHOTS); lcd4lSetup->addItem(mc); - +# endif int res = lcd4lSetup->exec(NULL, ""); lcd4lSetup->hide();