From b822af60b23135cc004d28f6ad6b0502ee2b27f3 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 8 Jan 2024 13:49:18 -0600 Subject: [PATCH] remove the invisible box for hack Signed-off-by: Jeff Carr --- group.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/group.go b/group.go index e4fa7ca..af3a0e2 100644 --- a/group.go +++ b/group.go @@ -19,6 +19,6 @@ func (parent *Node) NewGroup(name string) *Node { // by default, always pad groups newNode.Pad() - newBox := newNode.NewBox("defaultGroupBox", false) - return newBox + // newBox := newNode.NewBox("defaultGroupBox", false) + return newNode }