summaryrefslogtreecommitdiff
path: root/andlabs/combobox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-11 17:19:47 -0600
committerJeff Carr <[email protected]>2024-01-11 17:19:47 -0600
commitc4582b0b30e3020a92baf299572d8617872d45e5 (patch)
treec678b4f165bf4db0d9975df4b360925e8e9930ca /andlabs/combobox.go
parent4bf330767195a00de7fc0538228bcf0305143434 (diff)
type value any
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'andlabs/combobox.go')
-rw-r--r--andlabs/combobox.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/andlabs/combobox.go b/andlabs/combobox.go
index 6339f62..cc3603e 100644
--- a/andlabs/combobox.go
+++ b/andlabs/combobox.go
@@ -19,7 +19,7 @@ func (p *node) newCombobox(n *node) {
newt.val = make(map[int]string)
cb.OnChanged(func(spin *ui.EditableCombobox) {
- n.A = spin.Text()
+ n.value = spin.Text()
log.Warn("combobox changed =" + spin.Text() + ".")
n.doUserEvent()
})