refactor: remove some debug log spam

This commit is contained in:
CJ van den Berg 2026-04-08 21:41:06 +02:00
parent 61c7fbfbb7
commit 88c1c20340
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -290,7 +290,6 @@ fn set_panel_height_abs(self: *Self, y: usize) tp.result {
break :blk self.panels.?;
};
const max_h = self.box().h -| 1;
std.log.debug("set_panel_height: {?d} {d}", .{ self.panel_height, y });
self.panel_height = @max(1, @min(max_h, y));
self.panel_maximized = false;
panels.layout_ = .{ .static = self.panel_height.? };