- glcdsetup: show color selections as pulldown menues

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2020-06-14 18:44:44 +02:00
committed by Thilo Graf
parent e0d4b22bc9
commit e10be35000

View File

@@ -246,10 +246,10 @@ void GLCD_Menu::GLCD_Menu_Settings()
m.addItem(GenericMenuSeparatorLine);
m.addItem(new CMenuOptionChooser(LOCALE_GLCD_SELECT_FG, &color_fg,
GLCD_COLOR_OPTIONS, GLCD_COLOR_OPTION_COUNT, true, this,
CRCInput::convertDigitToKey(shortcut++)));
CRCInput::convertDigitToKey(shortcut++), NULL, true));
m.addItem(new CMenuOptionChooser(LOCALE_GLCD_SELECT_BG, &color_bg,
GLCD_COLOR_OPTIONS, GLCD_COLOR_OPTION_COUNT, true, this,
CRCInput::convertDigitToKey(shortcut++)));
CRCInput::convertDigitToKey(shortcut++), NULL, true));
m.addItem(new CMenuOptionChooser(LOCALE_GLCD_SELECT_BAR, &color_bar,
GLCD_COLOR_OPTIONS, GLCD_COLOR_OPTION_COUNT, true, this,
CRCInput::convertDigitToKey(shortcut++)));