diff options
| author | Jeff Carr <[email protected]> | 2024-01-16 12:55:20 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-16 12:55:20 -0600 |
| commit | ba95c13799740b5f55541fc5e8ab9f1d34f7e421 (patch) | |
| tree | 1e04c62ea4ac6a133978e14c4d33babe46f8fe1e /andlabs/setText.go | |
| parent | 29c39d7a1cbc1f071fa819e589fa6ed93fcb7d80 (diff) | |
use widget.GetString()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/setText.go')
| -rw-r--r-- | andlabs/setText.go | 2 |
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 |
