diff options
| author | Jeff Carr <[email protected]> | 2024-01-19 17:08:42 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-19 17:08:42 -0600 |
| commit | 7012aff2aebdc74d950d921262e0ddfa677761e4 (patch) | |
| tree | 2fdeed32f222affbdd99f83f6f37ed793fa5cce9 /action.go | |
| parent | 4ef833479cb887b455da7a9d0617a59250cf67f3 (diff) | |
hidden settings seem to work
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'action.go')
| -rw-r--r-- | action.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -56,12 +56,13 @@ func sendAction(n *Node, atype widget.ActionType) { a.State.Pad = n.pad a.State.Expand = n.expand a.State.Borderless = n.borderless - a.State.Direction = n.direction + for s, _ := range n.strings { a.State.Strings = append(a.State.Strings, s) } log.Warn("SENDING ACTION STRINGS a.Strings", a.Strings) + log.Warn("SENDING ACTION a.State.Value", a.State.Value) a.State.Range.Low = n.X a.State.Range.High = n.Y |
