Run rustfmt on the codebase

This commit is contained in:
Tom A. Wagner
2020-12-14 11:28:06 +01:00
parent 53895f8e28
commit c72bef364d
4 changed files with 18 additions and 14 deletions

View File

@@ -62,11 +62,11 @@ fn draw(
cr.move_to(
(from_alloc.x + from_alloc.width).into(),
(from_alloc.y + (from_alloc.height / 2)).into()
(from_alloc.y + (from_alloc.height / 2)).into(),
);
cr.line_to(
to_alloc.x.into(),
(to_alloc.y + (to_alloc.height / 2)).into()
(to_alloc.y + (to_alloc.height / 2)).into(),
);
cr.stroke();