From 7b51f2ba7a6a04a4477ce9cd8e2ad877d13ad381 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Sun, 14 Jun 2020 18:44:44 +0200 Subject: [PATCH] glcdsetup: show color selections as pulldown menues Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/1a73bf1ce4a2a129c6092d25bdba615971a4980e Author: vanhofen Date: 2020-06-14 (Sun, 14 Jun 2020) Origin message was: ------------------ - glcdsetup: show color selections as pulldown menues ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/glcdsetup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/glcdsetup.cpp b/src/gui/glcdsetup.cpp index c10d988ff..5fc46f551 100644 --- a/src/gui/glcdsetup.cpp +++ b/src/gui/glcdsetup.cpp @@ -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++)));