summaryrefslogtreecommitdiff
path: root/basicEntry.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-11 20:37:39 -0600
committerJeff Carr <[email protected]>2024-01-11 20:37:39 -0600
commit5351099972a0fab777a7ac17a3caccccd0ae562f (patch)
tree5f3ef6cd7827cf1e87f10b53df84d74708434306 /basicEntry.go
parentb6d0521996572f0eebd6ff039e80a29fcaeb853b (diff)
gui api updatesv0.10.3
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'basicEntry.go')
-rw-r--r--basicEntry.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/basicEntry.go b/basicEntry.go
index e65fde3..6dab1dc 100644
--- a/basicEntry.go
+++ b/basicEntry.go
@@ -70,7 +70,7 @@ func NewBasicEntry(p *gui.Node, name string) *BasicEntry {
d.l = p.NewLabel(name)
d.v = p.NewEntryLine("")
d.v.Custom = func() {
- d.value = d.v.S
+ d.value = d.v.GetText()
log.Log(INFO, "BasicEntry.Custom() user changed value to =", d.value)
if d.Custom != nil {
d.Custom()