Add missing logo_96 icon, fix a few incorrect paths (#2977)

🙈 I missed a few

Thanks @maxbrunsfeld / @mikayla-maki
This commit is contained in:
Nate Butler 2023-09-15 14:57:40 -04:00 committed by GitHub
commit 0aff0c105d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 5 deletions

View file

@ -1127,7 +1127,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)

View file

@ -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,

View file

@ -48,7 +48,7 @@ impl View for SharingStatusIndicator {
};
MouseEventHandler::new::<Self, _>(0, cx, |_, _| {
Svg::new("icons/disable_screen_sharing_12.svg")
Svg::new("icons/desktop.svg")
.with_color(color)
.constrained()
.with_width(18.)

View file

@ -112,7 +112,7 @@ impl Item for SharedScreen {
) -> gpui::AnyElement<V> {
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)