diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 60e7ce7ab8..78128c25ed 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -5717,7 +5717,7 @@ impl Editor { self.discard_inline_completion(false, cx); let multibuffer_point = match &action.deployed_from { - Some(CodeActionSource::Indicator(row)) => { + Some(CodeActionSource::Indicator(row)) | Some(CodeActionSource::RunMenu(row)) => { DisplayPoint::new(*row, 0).to_point(&snapshot) } _ => self.selections.newest::(cx).head(),