diff options
| author | Jeff Carr <[email protected]> | 2021-10-07 12:04:48 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2021-10-07 12:04:48 -0500 |
| commit | 4f29e633689954185f6ad865693d6fca6b82caf0 (patch) | |
| tree | 2226a8a8e40804d4105bcf05faeb8e0538d279b5 /box.go | |
| parent | 9aa141261b89e218d121498f37144db822c09ea7 (diff) | |
NODE: continued work on implementing a node tree
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'box.go')
| -rw-r--r-- | box.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -69,9 +69,9 @@ func NewBox(box *GuiBox, axis int, name string) *GuiBox { n := box.FindNode() if (n == nil) { log.Println("gui.NewBox() SERIOUS ERROR. CAN NOT FIND NODE") + os.Exit(0) } else { log.Println("gui.NewBox() node =", n.Name) - os.Exit(0) } var newbox *GuiBox newbox = new(GuiBox) |
