summaryrefslogtreecommitdiff
path: root/toolkit/andlabs/slider.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2023-04-06 20:25:14 -0500
committerJeff Carr <[email protected]>2023-04-06 20:25:14 -0500
commit933a7e4df0e6a28ad06dfd60ab2928d5cdf916f9 (patch)
tree268ad3d290b392f877963a6fdc82197168f51fc4 /toolkit/andlabs/slider.go
parent8649f37a56bc31928d69077545f1e323a794c61a (diff)
andlabs: callback is now safe through a go channel
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/andlabs/slider.go')
-rw-r--r--toolkit/andlabs/slider.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/andlabs/slider.go b/toolkit/andlabs/slider.go
index ed96f98..3f92067 100644
--- a/toolkit/andlabs/slider.go
+++ b/toolkit/andlabs/slider.go
@@ -19,8 +19,8 @@ func (t *andlabsT) newSlider(a *toolkit.Action) *andlabsT {
newt.wId = a.WidgetId
s.OnChanged(func(spin *ui.Slider) {
- newt.tw.I = newt.uiSlider.Value()
- newt.commonChange(newt.tw, a.WidgetId)
+ newt.i = newt.uiSlider.Value()
+ newt.doUserEvent()
})
return &newt