andlabs: grid w,h work again kinda

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2023-05-09 20:37:21 -05:00
parent e206fa143e
commit be3c212bae
2 changed files with 9 additions and 0 deletions

View File

@ -35,6 +35,10 @@ func (n *Node) redo(plug *aplug) {
a.X = n.X a.X = n.X
a.Y = n.Y a.Y = n.Y
// grid stuff
a.AtW = n.AtW
a.AtH = n.AtH
// used for values // used for values
a.I = n.I a.I = n.I
a.S = n.S a.S = n.S

View File

@ -38,6 +38,11 @@ func addWidget(a *toolkit.Action, tk *andlabsT) *node {
n.X = a.X n.X = a.X
n.Y = a.Y n.Y = a.Y
n.W = a.W
n.H = a.H
n.AtW = a.AtW
n.AtH = a.AtH
// store the internal toolkit information // store the internal toolkit information
n.tk = tk n.tk = tk