convert custom key to lower case
This commit is contained in:
parent
e6bdaac6fe
commit
f0f9b83270
1 changed files with 1 additions and 1 deletions
|
@ -876,7 +876,7 @@ fn handle_key_press<T: Clone + 'static + Send>(
|
|||
log::debug!(
|
||||
"comparing custom key {custom_key:?} to mask {mods:?} and key {keyboard_key}"
|
||||
);
|
||||
if custom_key.key == keyboard_key.into() && mods.is_subset(&custom_key.modifiers) {
|
||||
if custom_key.key == keyboard_key.to_upper().into() && mods.is_subset(&custom_key.modifiers) {
|
||||
let search_lock = ui.search_text.lock().unwrap();
|
||||
if let Err(e) = handle_selected_item(
|
||||
ui,
|
||||
|
|
Loading…
Add table
Reference in a new issue