From 9a4ecf0f88fbf1e085bfb5a35a8d36d755918afc Mon Sep 17 00:00:00 2001 From: Nate Butler Date: Fri, 15 Sep 2023 14:21:33 -0400 Subject: [PATCH] Add missing `logo_96` icon, fix a few incorrect paths --- assets/icons/logo_96.svg | 3 +++ crates/collab_ui/src/collab_panel.rs | 2 +- crates/collab_ui/src/collab_panel/contact_finder.rs | 2 +- crates/collab_ui/src/sharing_status_indicator.rs | 2 +- crates/workspace/src/shared_screen.rs | 2 +- styles/src/style_tree/welcome.ts | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 assets/icons/logo_96.svg diff --git a/assets/icons/logo_96.svg b/assets/icons/logo_96.svg new file mode 100644 index 0000000000..dc98bb8bc2 --- /dev/null +++ b/assets/icons/logo_96.svg @@ -0,0 +1,3 @@ + + + diff --git a/crates/collab_ui/src/collab_panel.rs b/crates/collab_ui/src/collab_panel.rs index c2a2b35134..764fb67752 100644 --- a/crates/collab_ui/src/collab_panel.rs +++ b/crates/collab_ui/src/collab_panel.rs @@ -1132,7 +1132,7 @@ impl CollabPanel { cx.font_cache(), )) .with_child( - Svg::new("icons/disable_screen_sharing_12.svg") + Svg::new("icons/desktop.svg") .with_color(theme.channel_hash.color) .constrained() .with_width(theme.channel_hash.width) diff --git a/crates/collab_ui/src/collab_panel/contact_finder.rs b/crates/collab_ui/src/collab_panel/contact_finder.rs index 9f96aa4b60..d0c12a7f90 100644 --- a/crates/collab_ui/src/collab_panel/contact_finder.rs +++ b/crates/collab_ui/src/collab_panel/contact_finder.rs @@ -209,7 +209,7 @@ impl PickerDelegate for ContactFinderDelegate { let icon_path = match request_status { ContactRequestStatus::None | ContactRequestStatus::RequestReceived => { - Some("icons/check_8.svg") + Some("icons/check.svg") } ContactRequestStatus::RequestSent => Some("icons/x.svg"), ContactRequestStatus::RequestAccepted => None, diff --git a/crates/collab_ui/src/sharing_status_indicator.rs b/crates/collab_ui/src/sharing_status_indicator.rs index 9fcd15aa18..6a6acb4b70 100644 --- a/crates/collab_ui/src/sharing_status_indicator.rs +++ b/crates/collab_ui/src/sharing_status_indicator.rs @@ -48,7 +48,7 @@ impl View for SharingStatusIndicator { }; MouseEventHandler::new::(0, cx, |_, _| { - Svg::new("icons/disable_screen_sharing_12.svg") + Svg::new("icons/desktop.svg") .with_color(color) .constrained() .with_width(18.) diff --git a/crates/workspace/src/shared_screen.rs b/crates/workspace/src/shared_screen.rs index 7b97174dfe..b99c5f3ab9 100644 --- a/crates/workspace/src/shared_screen.rs +++ b/crates/workspace/src/shared_screen.rs @@ -112,7 +112,7 @@ impl Item for SharedScreen { ) -> gpui::AnyElement { Flex::row() .with_child( - Svg::new("icons/disable_screen_sharing_12.svg") + Svg::new("icons/desktop.svg") .with_color(style.label.text.color) .constrained() .with_width(style.type_icon_width) diff --git a/styles/src/style_tree/welcome.ts b/styles/src/style_tree/welcome.ts index 8ff15d5d26..284a262a23 100644 --- a/styles/src/style_tree/welcome.ts +++ b/styles/src/style_tree/welcome.ts @@ -128,7 +128,7 @@ export default function welcome(): any { }, icon: svg( foreground(theme.highest, "on"), - "icons/check_12.svg", + "icons/check.svg", 12, 12 ),