From 5619a3e6182d54970aeee8e6d033414a14edc496 Mon Sep 17 00:00:00 2001 From: Smit Barmase Date: Wed, 16 Apr 2025 02:02:54 +0530 Subject: [PATCH] editor: Fix bad `hide_mouse_cursor` call in `find_all_references` (#28810) Release Notes: - N/A --- crates/editor/src/editor.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 18ca6996036101b3281e7669732ef839ba978fca..58f6e549a42bc816fc5c74fd7d246bbbc0201e28 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -13723,8 +13723,6 @@ impl Editor { window: &mut Window, cx: &mut Context, ) -> Option>> { - self.hide_mouse_cursor(&HideMouseCursorOrigin::TypingAction); - let selection = self.selections.newest::(cx); let multi_buffer = self.buffer.read(cx); let head = selection.head();