fix(logview): don't wrap messages in logview
opts_vscroll is apparently broken. Disable it for now as non-corrupted log messages are more important.
This commit is contained in:
parent
77b949306e
commit
23fcf64b62
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ const Level = enum {
|
|||
|
||||
pub fn create(a: Allocator, parent: Plane) !Widget {
|
||||
const self: *Self = try a.create(Self);
|
||||
self.* = .{ .plane = try Plane.init(&(Widget.Box{}).opts_vscroll(name), parent) };
|
||||
self.* = .{ .plane = try Plane.init(&(Widget.Box{}).opts(name), parent) };
|
||||
return Widget.to(self);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue