From e92498002e45499c14fa222c0f893cb55bde248f Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Thu, 4 Apr 2024 20:34:08 -0500 Subject: [PATCH] widgets(textinput): remove log line --- src/widgets/TextInput.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/src/widgets/TextInput.zig b/src/widgets/TextInput.zig index 5d01b5f..55cdeee 100644 --- a/src/widgets/TextInput.zig +++ b/src/widgets/TextInput.zig @@ -130,7 +130,6 @@ pub fn draw(self: *TextInput, win: Window) void { if (self.cursor_idx < self.draw_offset) self.draw_offset = self.cursor_idx; while (true) { const width = self.widthToCursor(win); - log.debug("WIDTH TO CURSOR {d}, win.width {d}", .{ width, win.width }); if (width >= win.width) { self.draw_offset +|= width - win.width + 1; continue;