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/place.go | |
| parent | 29c39d7a1cbc1f071fa819e589fa6ed93fcb7d80 (diff) | |
use widget.GetString()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/place.go')
| -rw-r--r-- | andlabs/place.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/andlabs/place.go b/andlabs/place.go index 1d2144c..94a16b2 100644 --- a/andlabs/place.go +++ b/andlabs/place.go @@ -75,7 +75,7 @@ func (p *node) place(n *node) bool { // log.Log(ERROR, "THIS SHOULD NEVER HAPPEN ??????? trying to place() node=", n.WidgetId, n.progname, n.Text, n.WidgetType) // log.Log(ERROR, "THIS SHOULD NEVER HAPPEN ??????? trying to place() on parent=", p.WidgetId, p.progname, p.Text, p.WidgetType) // panic("n.tk.uiControl == nil") - p.tk.uiTab.Append(getString(n.value), n.tk.uiControl) + p.tk.uiTab.Append(widget.GetString(n.value), n.tk.uiControl) p.tk.boxC += 1 return true case widget.Box: |
