From af30a9b81418c136b840b208f93ddfd1634e58fa Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Fri, 19 Jan 2024 14:38:17 -0700 Subject: [PATCH] Show cursors sligthly longer --- crates/editor/src/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index b31dd54208a52df335e7b1af55f163d758e91293..9c7e1e1f10f026856e4017980287fa3a6c5e4bf0 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -3907,7 +3907,7 @@ impl Editor { self.show_cursor_names = true; cx.notify(); cx.spawn(|this, mut cx| async move { - cx.background_executor().timer(Duration::from_secs(2)).await; + cx.background_executor().timer(Duration::from_secs(3)).await; this.update(&mut cx, |this, cx| { this.show_cursor_names = false; cx.notify()