From b1a25203637cf08119390acd16e996863a48dcac Mon Sep 17 00:00:00 2001 From: Katie M Date: Tue, 30 Apr 2024 18:15:22 -0400 Subject: [PATCH] fixing an issue where the lowercase letter of the desired action (i.e. 'y' instead of 'Y') did not highlight the intended key. --- src/popup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup.cpp b/src/popup.cpp index b1fde77ee4ee6..dde66edbe261f 100644 --- a/src/popup.cpp +++ b/src/popup.cpp @@ -376,7 +376,7 @@ query_popup::result query_popup::query_once() } else { for( size_t ind = 0; ind < options.size(); ++ind ) { if( res.action == options[ind].action ) { - cur = ind; + impl->keyboard_selected_option = ind; if( options[ind].filter( res.evt ) ) { res.wait_input = false; break;