mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-12 05:27:07 +00:00
Change collab panel icon
This commit is contained in:
parent
fa71de8842
commit
299906346e
1 changed files with 2 additions and 2 deletions
|
@ -1088,7 +1088,7 @@ impl CollabPanel {
|
||||||
MouseEventHandler::<LeaveCallContactList, Self>::new(0, cx, |_, _| {
|
MouseEventHandler::<LeaveCallContactList, Self>::new(0, cx, |_, _| {
|
||||||
render_icon_button(
|
render_icon_button(
|
||||||
theme.collab_panel.add_contact_button.in_state(is_selected),
|
theme.collab_panel.add_contact_button.in_state(is_selected),
|
||||||
"icons/user_plus_16.svg",
|
"icons/plus_16.svg",
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
.with_cursor_style(CursorStyle::PointingHand)
|
.with_cursor_style(CursorStyle::PointingHand)
|
||||||
|
@ -1993,7 +1993,7 @@ impl Panel for CollabPanel {
|
||||||
fn icon_path(&self, cx: &gpui::WindowContext) -> Option<&'static str> {
|
fn icon_path(&self, cx: &gpui::WindowContext) -> Option<&'static str> {
|
||||||
settings::get::<CollaborationPanelSettings>(cx)
|
settings::get::<CollaborationPanelSettings>(cx)
|
||||||
.button
|
.button
|
||||||
.then(|| "icons/radix/person.svg")
|
.then(|| "icons/speech_bubble_12.svg")
|
||||||
}
|
}
|
||||||
|
|
||||||
fn icon_tooltip(&self) -> (String, Option<Box<dyn gpui::Action>>) {
|
fn icon_tooltip(&self) -> (String, Option<Box<dyn gpui::Action>>) {
|
||||||
|
|
Loading…
Reference in a new issue