From 834c485300619362b90ef204e92c8697b31eddcf Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 10 May 2022 14:46:42 -0700 Subject: [PATCH] Don't use pointing hand cursor for the user's own projects --- crates/contacts_panel/src/contacts_panel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/contacts_panel/src/contacts_panel.rs b/crates/contacts_panel/src/contacts_panel.rs index 499d4d879c6bcb2ce74b6d09cbc14c9414ca6f5c..d5ff31f27d690c9e53b207ce77d02a5fbe692d12 100644 --- a/crates/contacts_panel/src/contacts_panel.rs +++ b/crates/contacts_panel/src/contacts_panel.rs @@ -285,7 +285,7 @@ impl ContactsPanel { .boxed() }, ) - .with_cursor_style(if is_host || is_shared { + .with_cursor_style(if !is_host && is_shared { CursorStyle::PointingHand } else { CursorStyle::Arrow