Fix modifier key logic for edit predictions preview with completions (#24709)
Release Notes: - N/A
This commit is contained in:
parent
754560876b
commit
fc86e7cd51
1 changed files with 1 additions and 1 deletions
|
@ -5205,7 +5205,7 @@ impl Editor {
|
|||
return;
|
||||
};
|
||||
|
||||
if &accept_keystroke.modifiers == modifiers {
|
||||
if &accept_keystroke.modifiers == modifiers && accept_keystroke.modifiers.modified() {
|
||||
if matches!(
|
||||
self.edit_prediction_preview,
|
||||
EditPredictionPreview::Inactive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue