glcd: new option for scroll text on/off added

Origin commit data
------------------
Commit: a1aa348882
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2023-08-13 (Sun, 13 Aug 2023)

Origin message was:
------------------
nglcd: new option for scroll text on/off added

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
BPanther
2023-08-14 22:59:47 +02:00
committed by Thilo Graf
parent 04e39c2f43
commit d13780e893
8 changed files with 78 additions and 21 deletions

View File

@@ -315,6 +315,8 @@ int GLCD_Menu::GLCD_Menu_Settings()
gms->addItem(new CMenuForwarder(LOCALE_GLCD_BRIGHTNESS_SETTINGS, true, NULL, this, "brightness_settings", CRCInput::convertDigitToKey(shortcut++)));
gms->addItem(new CMenuOptionChooser(LOCALE_GLCD_SCROLL, &g_settings.glcd_scroll, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, this, CRCInput::convertDigitToKey(shortcut++)));
gms->addItem(new CMenuOptionNumberChooser(LOCALE_GLCD_SCROLL_SPEED, &g_settings.glcd_scroll_speed, true, 1, 63, this));
gms->addItem(new CMenuOptionChooser(LOCALE_GLCD_MIRROR_OSD, &g_settings.glcd_mirror_osd, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, true, this, CRCInput::convertDigitToKey(shortcut++)));