rem(element): unnecessary debug loging
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 1m20s

This commit is contained in:
2025-03-10 21:44:18 +01:00
parent 54c7e19939
commit 5c1d61eefd

View File

@@ -94,9 +94,7 @@ pub fn Scrollable(Event: type) type {
this.size = size; this.size = size;
// TODO scrollbar space - depending on configuration and only if necessary? // TODO scrollbar space - depending on configuration and only if necessary?
std.log.debug("----", .{});
this.container.resize(.{}, this.size); this.container.resize(.{}, this.size);
std.log.debug("----", .{});
this.container_size = this.container.size; this.container_size = this.container.size;
} }