From 26ab08e7d55902f812f775353c51db370955e397 Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Mon, 3 Feb 2025 16:25:41 +0300 Subject: [PATCH] do not display bounds --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f7be162..7a3d853 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -178,8 +178,8 @@ impl Widget for Knob<'_> { ); } - // Draw the boundary rectangle - painter.rect_stroke(rect, 0.0, Stroke::new(1.0, Color32::RED)); + // Draw the bounding rect + //painter.rect_stroke(rect, 0.0, Stroke::new(1.0, Color32::RED)); response }