diff --git a/crates/shepherd-api/src/types.rs b/crates/shepherd-api/src/types.rs index c04036c..668d649 100644 --- a/crates/shepherd-api/src/types.rs +++ b/crates/shepherd-api/src/types.rs @@ -299,9 +299,7 @@ impl VolumeRestrictions { impl VolumeInfo { /// Get an icon name for the current volume status pub fn icon_name(&self) -> &'static str { - if self.muted { - "audio-volume-muted-symbolic" - } else if self.percent == 0 { + if self.muted || self.percent == 0 { "audio-volume-muted-symbolic" } else if self.percent < 33 { "audio-volume-low-symbolic"