diff options
| author | Jeff Carr <[email protected]> | 2025-03-05 03:00:21 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-05 03:00:21 -0600 |
| commit | 15100aad3ee4294fc22bbeb697e6c6b88228a0ca (patch) | |
| tree | 1b0c8f73b86e9d28b0bc682d35b5e5e6bde00265 /table.go | |
| parent | 975c2d31020540dd4a67fd049aab565bb168ae21 (diff) | |
func shouldn't have been globalv0.22.22
Diffstat (limited to 'table.go')
| -rw-r--r-- | table.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,7 +86,7 @@ func (grid *Node) makeGridLabel(pb *guipb.Widget, w int, h int) *Node { a.State.GridOffset.X = w a.State.GridOffset.Y = h // log.Info("makeGridLabel()", a.State) - return AddNode(a) + return addNode(a) } func (me *TreeInfo) updateTable(t *guipb.Table) { @@ -184,7 +184,7 @@ func (me *TreeInfo) makeTable(t *guipb.Table) { a.WidgetId = int(t.Grid.Id) a.ParentId = int(t.Parent.Id) a.State.Enable = true - grid = AddNode(a) + grid = addNode(a) } if grid == nil { log.Info("tree: makeTable() failed to make grid") |
