From 6dc4875da79b26ad03e0006faf26c644f7a9bab4 Mon Sep 17 00:00:00 2001 From: RadsammyT Date: Sat, 21 Mar 2026 11:29:22 -0400 Subject: [PATCH] fix duped instance field from merge --- ly-ui/src/components/Label.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/ly-ui/src/components/Label.zig b/ly-ui/src/components/Label.zig index c071058..2ccb441 100644 --- a/ly-ui/src/components/Label.zig +++ b/ly-ui/src/components/Label.zig @@ -10,7 +10,6 @@ const Widget = @import("../Widget.zig"); instance: ?Widget, allocator: ?Allocator, -instance: ?Widget, text: []const u8, max_width: ?usize, fg: u32, @@ -34,7 +33,6 @@ pub fn init( return .{ .instance = null, .allocator = null, - .instance = null, .text = text, .max_width = max_width, .fg = fg,