summaryrefslogtreecommitdiff
path: root/andlabs/setText.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-16 12:55:20 -0600
committerJeff Carr <[email protected]>2024-01-16 12:55:20 -0600
commitba95c13799740b5f55541fc5e8ab9f1d34f7e421 (patch)
tree1e04c62ea4ac6a133978e14c4d33babe46f8fe1e /andlabs/setText.go
parent29c39d7a1cbc1f071fa819e589fa6ed93fcb7d80 (diff)
use widget.GetString()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/setText.go')
-rw-r--r--andlabs/setText.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/andlabs/setText.go b/andlabs/setText.go
index 88b4df0..77beb5c 100644
--- a/andlabs/setText.go
+++ b/andlabs/setText.go
@@ -6,7 +6,7 @@ import (
)
func (n *node) setText(a *widget.Action) {
- name := getString(a.Value)
+ name := widget.GetString(a.Value)
log.Log(CHANGE, "setText() START with text =", name)
t := n.tk