Fix backwards Frame::rotate in canvas
The angle direction has been fixed upstream in `euclid` (see https://github.com/servo/euclid/pull/413).
This commit is contained in:
parent
ea1a7248d2
commit
77c7ad1fef
1 changed files with 1 additions and 1 deletions
|
|
@ -276,7 +276,7 @@ impl Frame {
|
|||
.transforms
|
||||
.current
|
||||
.raw
|
||||
.pre_rotate(lyon::math::Angle::radians(-angle));
|
||||
.pre_rotate(lyon::math::Angle::radians(angle));
|
||||
self.transforms.current.is_identity = false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue