From 73731c6201dbb0f8fb3b58c60d5fd8bdf16eea69 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Fri, 16 Aug 2024 18:36:49 -0400 Subject: [PATCH] Scrollbar has Scrollbar role --- scrollbar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrollbar.go b/scrollbar.go index 9be679c..08df99a 100644 --- a/scrollbar.go +++ b/scrollbar.go @@ -45,7 +45,7 @@ func newScrollbar (orient string) *Scrollbar { this.handle.SetRole(tomo.R("objects", "ScrollbarHandle")) this.handle.SetTag(orient, true) - this.SetRole(tomo.R("objects", "Slider")) + this.SetRole(tomo.R("objects", "Scrollbar")) this.SetTag(orient, true) return this }