summaryrefslogtreecommitdiffstats
path: root/src/widget/checkbox.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget/checkbox.rs')
-rw-r--r--src/widget/checkbox.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widget/checkbox.rs b/src/widget/checkbox.rs
index b8a20d2c..a7561df1 100644
--- a/src/widget/checkbox.rs
+++ b/src/widget/checkbox.rs
@@ -182,8 +182,8 @@ pub trait Renderer {
fn draw(
&mut self,
cursor_position: Point,
- bounds: Rectangle<f32>,
- label_bounds: Rectangle<f32>,
+ bounds: Rectangle,
+ label_bounds: Rectangle,
is_checked: bool,
) -> MouseCursor;
}