🐛 Fix rotated shapes extrect calculation

This commit is contained in:
Alejandro Alonso 2026-01-15 09:22:23 +01:00
parent 311e124658
commit c411aefc6c

View File

@ -1512,6 +1512,8 @@ impl Shape {
!self.shadows.is_empty()
|| self.blur.is_some()
|| !self.strokes.is_empty()
|| !self.transform.is_identity()
|| !math::is_close_to(self.rotation, 0.0)
|| matches!(self.shape_type, Type::Group(_) | Type::Frame(_))
}