From 4afe44f9062115d11fbc9bf0805db89e60d3c8b1 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Mon, 15 Mar 2021 23:51:54 +0100 Subject: [PATCH] - hintbox: fix hardcoded keys Signed-off-by: Thilo Graf --- src/gui/widget/hintbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/widget/hintbox.cpp b/src/gui/widget/hintbox.cpp index c74905471..59768df4d 100644 --- a/src/gui/widget/hintbox.cpp +++ b/src/gui/widget/hintbox.cpp @@ -288,7 +288,7 @@ int CHintBox::exec() res = messages_return::handled; break; } - else if((msg == CRCInput::RC_next) || (msg == CRCInput::RC_prev)) { + else if ((msg == (neutrino_msg_t) g_settings.key_next43mode) || (msg == (neutrino_msg_t) g_settings.key_switchformat)) { res = messages_return::cancel_all; g_RCInput->postMsg(msg, data); }