From 5502c00d9a77bf4e0394a9e451bdfd43474eb5b2 Mon Sep 17 00:00:00 2001 From: Keith Simmons Date: Thu, 10 Mar 2022 13:28:13 -0800 Subject: [PATCH] swap default cursor shape back to bar --- crates/editor/src/element.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/editor/src/element.rs b/crates/editor/src/element.rs index 3238cf840f..b15487b54c 100644 --- a/crates/editor/src/element.rs +++ b/crates/editor/src/element.rs @@ -1268,7 +1268,7 @@ pub enum CursorShape { impl Default for CursorShape { fn default() -> Self { - CursorShape::Block + CursorShape::Bar } }