From 530f50e53ceafdf3230675201a6a307d6646b98a Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Fri, 26 Jul 2024 09:53:26 -0700 Subject: [PATCH] Removing extra dbg statement --- src/widgets/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/input.rs b/src/widgets/input.rs index cf84e74..c069434 100644 --- a/src/widgets/input.rs +++ b/src/widgets/input.rs @@ -894,7 +894,7 @@ where ) .saturating_abs(); let cursor = Cursor { - offset: if dbg!(relative.x) <= rect.size.width / 3 { + offset: if relative.x <= rect.size.width / 3 { glyph.info.start } else { glyph.info.end