Skip to content

Commit

Permalink
fixing an issue where the lowercase letter of the desired action (i.e…
Browse files Browse the repository at this point in the history
…. 'y' instead of 'Y') did not highlight the intended key.
  • Loading branch information
katemonster33 committed Apr 30, 2024
1 parent 51d8791 commit 65bee02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/popup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 65bee02

Please sign in to comment.