Fix CI for real this time

This commit is contained in:
Albert Armea 2025-12-29 17:04:15 -05:00
parent 347174d4ae
commit 3fd49b2efd

View file

@ -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"