19 lines
265 B
Go
19 lines
265 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/andlabs/ui"
|
||
|
_ "github.com/andlabs/ui/winmanifest"
|
||
|
)
|
||
|
|
||
|
func (p *node) newGroup(n *node) {
|
||
|
newt := new(guiWidget)
|
||
|
|
||
|
g := ui.NewGroup(n.Name)
|
||
|
g.SetMargined(margin)
|
||
|
newt.uiGroup = g
|
||
|
newt.uiControl = g
|
||
|
|
||
|
n.tk = newt
|
||
|
p.place(n)
|
||
|
}
|