diff options
| author | Jeff Carr <[email protected]> | 2023-04-23 07:37:24 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-23 07:37:24 -0500 |
| commit | 2d4d2b6b3e115a86a10f98c20de0e4e82be519c2 (patch) | |
| tree | 4cab36495872e70220e47b1790189249c3e2bcdc /common.go | |
| parent | aeb998eea5ef67c1c87664340b89b5e415fb0747 (diff) | |
actually ran again without crashing
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'common.go')
| -rw-r--r-- | common.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -103,7 +103,7 @@ func (n *Node) Set(val any) { func (n *Node) AppendText(str string) { var a toolkit.Action a.ActionType = toolkit.SetText - tmp := n.widget.S + str + tmp := n.S + str log(debugChange, "AppendText() value =", tmp) a.S = tmp n.Text = tmp @@ -111,7 +111,7 @@ func (n *Node) AppendText(str string) { } func (n *Node) GetText() string { - return n.widget.S + return n.S } /* |
