summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2021-10-07 06:48:50 -0500
committerJeff Carr <[email protected]>2021-10-07 06:48:50 -0500
commit9aa141261b89e218d121498f37144db822c09ea7 (patch)
tree82b7fb11efafc765becc29f7fdfdab049a41da56 /window.go
parent54cf41663c2d94182370a2a4b14526f35c601131 (diff)
NODE: continued work on implementing a node tree
Diffstat (limited to 'window.go')
-rw-r--r--window.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/window.go b/window.go
index 960c8bf..cd03a7d 100644
--- a/window.go
+++ b/window.go
@@ -154,7 +154,7 @@ func CreateWindow(title string, tabname string, x int, y int, custom func() ui.C
log.Println("SERIOUS ERROR n.box == nil in CreateWindow()")
log.Println("SERIOUS ERROR n.box == nil in CreateWindow()")
}
- n.box.InitTab(title, custom)
+ n.InitTab(title, custom)
return n
}