Remove useless f32 conversion in iced_tiny_skia
This commit is contained in:
parent
8750d83337
commit
3105ad2e00
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue