Skip to content

Commit

Permalink
ignore Shift modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
juliapaci committed Mar 2, 2024
1 parent 2da6e0c commit dffed3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file_dialog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ impl FileDialog {
if !focused && !self.path_edit_visible {
let mut focus = false;
ui.input(|inp| {
if inp.modifiers.any() {
if inp.modifiers.any() && !inp.modifiers.shift_only() {
return;
}

Expand Down

0 comments on commit dffed3f

Please sign in to comment.