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/group.go | |
| parent | 29c39d7a1cbc1f071fa819e589fa6ed93fcb7d80 (diff) | |
use widget.GetString()
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/group.go')
| -rw-r--r-- | andlabs/group.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/andlabs/group.go b/andlabs/group.go index e67f358..8faa6a4 100644 --- a/andlabs/group.go +++ b/andlabs/group.go @@ -1,6 +1,8 @@ package main import ( + "go.wit.com/gui/widget" + "go.wit.com/dev/andlabs/ui" _ "go.wit.com/dev/andlabs/ui/winmanifest" ) @@ -8,7 +10,7 @@ import ( func (p *node) newGroup(n *node) { newt := new(guiWidget) - g := ui.NewGroup(getString(n.value)) + g := ui.NewGroup(widget.GetString(n.value)) g.SetMargined(true) newt.uiGroup = g newt.uiControl = g |
