From c3110d3dce6b83d3d86800e40c6398592e91c2b3 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 26 Jan 2024 18:48:16 -0500 Subject: [PATCH] Rename `BellBadged` to `BellDot` (#6820) This PR renames the `BellBadged` icon to `BellDot` to be a bit clearer as to what its contents are. Release Notes: - N/A --- assets/icons/{bell_badged.svg => bell_dot.svg} | 0 crates/collab_ui/src/notification_panel.rs | 2 +- crates/ui/src/components/icon.rs | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename assets/icons/{bell_badged.svg => bell_dot.svg} (100%) diff --git a/assets/icons/bell_badged.svg b/assets/icons/bell_dot.svg similarity index 100% rename from assets/icons/bell_badged.svg rename to assets/icons/bell_dot.svg diff --git a/crates/collab_ui/src/notification_panel.rs b/crates/collab_ui/src/notification_panel.rs index 24bbcbc027..54699a3440 100644 --- a/crates/collab_ui/src/notification_panel.rs +++ b/crates/collab_ui/src/notification_panel.rs @@ -685,7 +685,7 @@ impl Panel for NotificationPanel { return Some(IconName::Bell); } - Some(IconName::BellBadged) + Some(IconName::BellDot) } fn icon_tooltip(&self, _cx: &WindowContext) -> Option<&'static str> { diff --git a/crates/ui/src/components/icon.rs b/crates/ui/src/components/icon.rs index 3b8f3bc8ae..e02785ec37 100644 --- a/crates/ui/src/components/icon.rs +++ b/crates/ui/src/components/icon.rs @@ -39,7 +39,7 @@ pub enum IconName { Bell, BellOff, BellRing, - BellBadged, + BellDot, Bolt, CaseSensitive, Check, @@ -131,7 +131,7 @@ impl IconName { IconName::Bell => "icons/bell.svg", IconName::BellOff => "icons/bell_off.svg", IconName::BellRing => "icons/bell_ring.svg", - IconName::BellBadged => "icons/bell_badged.svg", + IconName::BellDot => "icons/bell_dot.svg", IconName::Bolt => "icons/bolt.svg", IconName::CaseSensitive => "icons/case_insensitive.svg", IconName::Check => "icons/check.svg",