From 8ba52b839fb7608f652989a2f5456991746df648 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 2 Jan 2024 11:41:35 -0500 Subject: [PATCH] Use small icons in channel list (#3832) This PR adjusts the size of the chat and channel note icons in the channel list to be smaller. Release Notes: - N/A --- crates/collab_ui2/src/collab_panel.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/collab_ui2/src/collab_panel.rs b/crates/collab_ui2/src/collab_panel.rs index 5aecc37541..348dd8c4e8 100644 --- a/crates/collab_ui2/src/collab_panel.rs +++ b/crates/collab_ui2/src/collab_panel.rs @@ -2170,6 +2170,7 @@ impl CollabPanel { h_stack() .child( IconButton::new("channel_chat", Icon::MessageBubbles) + .icon_size(IconSize::Small) .icon_color(if has_messages_notification { Color::Default } else { @@ -2185,6 +2186,7 @@ impl CollabPanel { ) .child( IconButton::new("channel_notes", Icon::File) + .icon_size(IconSize::Small) .icon_color(if has_notes_notification { Color::Default } else {