Remove useless f32 conversion in iced_tiny_skia

This commit is contained in:
Héctor Ramón Jiménez 2023-02-27 03:04:05 +01:00
parent 8750d83337
commit 3105ad2e00
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -354,7 +354,7 @@ fn arc_to(
});
}
None => {
path.line_to(x_to as f32, y_to as f32);
path.line_to(x_to, y_to);
}
}
}