diff options
| author | Jeff Carr <[email protected]> | 2023-04-06 14:16:59 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-06 14:16:59 -0500 |
| commit | 789beceb913cc6132931c0e245cad78d3ae7d9b8 (patch) | |
| tree | 58b80351c471c6a2e50d30f78abd6817f2f25b00 /tab.go | |
| parent | c16b8695332485071331bbcab924327cd2bab6e5 (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.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |
