diff options
| author | Jeff Carr <[email protected]> | 2023-12-15 17:18:48 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-12-15 17:18:48 -0600 |
| commit | dcce32583387be7fc4f6cd8c8dea62fd7dc42ecf (patch) | |
| tree | ffbedb095816a92c69546041271acbef5870481c /toolkit/andlabs/grid.go | |
| parent | 282119d970faed3f8a60d5105a2f26ee14681ff4 (diff) | |
make a common.go for the toolkitsv0.8.7
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/andlabs/grid.go')
| -rw-r--r-- | toolkit/andlabs/grid.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/andlabs/grid.go b/toolkit/andlabs/grid.go index 8764962..6c47d1b 100644 --- a/toolkit/andlabs/grid.go +++ b/toolkit/andlabs/grid.go @@ -11,10 +11,10 @@ import ( // -- (1,2) -- (2,1) -- (3,1) -- // ----------------------------- func (p *node) newGrid(n *node) { - var newt *andlabsT + var newt *guiWidget log(debugToolkit, "newGrid()", n.WidgetId, "to", n.ParentId) - newt = new(andlabsT) + newt = new(guiWidget) c := ui.NewGrid() newt.uiGrid = c |
