Skip to content

Commit 43a7cc2

Browse files
committed
Fix clippy lint
1 parent 936d480 commit 43a7cc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

widget/src/text_input.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,7 @@ pub fn draw<Renderer>(
11961196

11971197
if let Some((cursor, color)) = cursor {
11981198
renderer.with_translation(Vector::new(-offset, 0.0), |renderer| {
1199-
renderer.fill_quad(cursor, color)
1199+
renderer.fill_quad(cursor, color);
12001200
});
12011201
} else {
12021202
renderer.with_translation(Vector::ZERO, |_| {});

0 commit comments

Comments
 (0)