glcdsetup: show color selections as pulldown menues

Origin commit data
------------------
Commit: 1a73bf1ce4
Author: vanhofen <vanhofen@gmx.de>
Date: 2020-06-14 (Sun, 14 Jun 2020)

Origin message was:
------------------
- glcdsetup: show color selections as pulldown menues
This commit is contained in:
vanhofen
2020-06-14 18:44:44 +02:00
parent 63db7d4779
commit 29b31d8ae7

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++)));