summaryrefslogtreecommitdiff
path: root/tab.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-04-06 14:16:59 -0500
committerJeff Carr <[email protected]>2023-04-06 14:16:59 -0500
commit789beceb913cc6132931c0e245cad78d3ae7d9b8 (patch)
tree58b80351c471c6a2e50d30f78abd6817f2f25b00 /tab.go
parentc16b8695332485071331bbcab924327cd2bab6e5 (diff)
andlabs: fix bug in flags and chan window create
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'tab.go')
-rw-r--r--tab.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tab.go b/tab.go
index e425068..49632ee 100644
--- a/tab.go
+++ b/tab.go
@@ -16,6 +16,6 @@ func (n *Node) NewTab(text string) *Node {
a.Text = text
newaction(&a, newNode, n)
- newBox := newNode.NewBox(text + "tab hbox", true)
+ newBox := newNode.NewBox(text, true)
return newBox
}