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/addText.go | |
| parent | 29c39d7a1cbc1f071fa819e589fa6ed93fcb7d80 (diff) | |
use widget.GetString()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/addText.go')
| -rw-r--r-- | andlabs/addText.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/andlabs/addText.go b/andlabs/addText.go index 75c8c7d..cbc9269 100644 --- a/andlabs/addText.go +++ b/andlabs/addText.go @@ -16,9 +16,9 @@ func (n *node) addText(a *widget.Action) { switch n.WidgetType { case widget.Dropdown: - n.addDropdownName(getString(a.Value)) + n.addDropdownName(widget.GetString(a.Value)) case widget.Combobox: - n.addComboboxName(getString(a.Value)) + n.addComboboxName(widget.GetString(a.Value)) default: log.Log(ERROR, "plugin Send() Don't know how to addText on", n.WidgetType, "yet", a.ActionType) } |
