Scrollbar has Scrollbar role

This commit is contained in:
Sasha Koshka 2024-08-16 18:36:49 -04:00
parent 7c42b7ad37
commit 73731c6201

View File

@ -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
}