From 3fd49b2efd93a6d3feaf6c9e0fdc19850ec08cf5 Mon Sep 17 00:00:00 2001 From: Albert Armea Date: Mon, 29 Dec 2025 17:04:15 -0500 Subject: [PATCH] Fix CI for real this time --- crates/shepherd-api/src/types.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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"