mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 05:15:00 +00:00
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
This commit is contained in:
parent
f5b60adcf9
commit
8ba52b839f
1 changed files with 2 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue