Reword channel-creation tooltips

This commit is contained in:
Max Brunsfeld 2023-08-15 13:08:44 -07:00
parent 9d60e550be
commit 46928fa871

View file

@ -1272,7 +1272,7 @@ impl CollabPanel {
.on_click(MouseButton::Left, |_, this, cx| this.new_root_channel(cx)) .on_click(MouseButton::Left, |_, this, cx| this.new_root_channel(cx))
.with_tooltip::<AddChannel>( .with_tooltip::<AddChannel>(
0, 0,
"Add or join a channel", "Create a channel",
None, None,
tooltip_style.clone(), tooltip_style.clone(),
cx, cx,
@ -1836,7 +1836,7 @@ impl CollabPanel {
gpui::elements::AnchorCorner::BottomLeft gpui::elements::AnchorCorner::BottomLeft
}, },
vec![ vec![
ContextMenuItem::action("New Channel", NewChannel { channel_id }), ContextMenuItem::action("New Subchannel", NewChannel { channel_id }),
ContextMenuItem::action("Remove Channel", RemoveChannel { channel_id }), ContextMenuItem::action("Remove Channel", RemoveChannel { channel_id }),
ContextMenuItem::action("Manage members", ManageMembers { channel_id }), ContextMenuItem::action("Manage members", ManageMembers { channel_id }),
ContextMenuItem::action("Invite members", InviteMembers { channel_id }), ContextMenuItem::action("Invite members", InviteMembers { channel_id }),