From 7c42b7ad3796e24dd3098b24f139a96e355ef616 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Fri, 16 Aug 2024 18:36:20 -0400 Subject: [PATCH] Scrollbar has ScrollbarHandle instead of SliderHandle --- scrollbar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrollbar.go b/scrollbar.go index 7ece407..9be679c 100644 --- a/scrollbar.go +++ b/scrollbar.go @@ -43,7 +43,7 @@ func newScrollbar (orient string) *Scrollbar { this.OnMouseMove(this.handleMouseMove) this.OnScroll(this.handleScroll) - this.handle.SetRole(tomo.R("objects", "SliderHandle")) + this.handle.SetRole(tomo.R("objects", "ScrollbarHandle")) this.handle.SetTag(orient, true) this.SetRole(tomo.R("objects", "Slider")) this.SetTag(orient, true)