From 46928fa871aae366ecff130cf12fd6867e66c5ca Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 15 Aug 2023 13:08:44 -0700 Subject: [PATCH] Reword channel-creation tooltips --- crates/collab_ui/src/collab_panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/collab_ui/src/collab_panel.rs b/crates/collab_ui/src/collab_panel.rs index 3f303da2af..7ad7a8883d 100644 --- a/crates/collab_ui/src/collab_panel.rs +++ b/crates/collab_ui/src/collab_panel.rs @@ -1272,7 +1272,7 @@ impl CollabPanel { .on_click(MouseButton::Left, |_, this, cx| this.new_root_channel(cx)) .with_tooltip::( 0, - "Add or join a channel", + "Create a channel", None, tooltip_style.clone(), cx, @@ -1836,7 +1836,7 @@ impl CollabPanel { gpui::elements::AnchorCorner::BottomLeft }, vec![ - ContextMenuItem::action("New Channel", NewChannel { channel_id }), + ContextMenuItem::action("New Subchannel", NewChannel { channel_id }), ContextMenuItem::action("Remove Channel", RemoveChannel { channel_id }), ContextMenuItem::action("Manage members", ManageMembers { channel_id }), ContextMenuItem::action("Invite members", InviteMembers { channel_id }),