From 65bee02825a6a0feffa64553c3482aced46bf1b4 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 a07b9a2a8a1d3..017f7d63e3da7 100644 --- a/src/popup.cpp +++ b/src/popup.cpp @@ -369,7 +369,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;