🐛 Fix Fill Inner Shadows

This commit is contained in:
Elena Torro 2025-03-20 15:01:00 +01:00
parent e60e36a0e2
commit 91d15ea221
5 changed files with 149 additions and 49 deletions

View file

@ -749,6 +749,10 @@ impl Shape {
_ => false,
}
}
pub fn has_fills(&self) -> bool {
!self.fills.is_empty()
}
}
#[cfg(test)]