Scrollbar drags on mouse motion

This commit is contained in:
Sasha Koshka 2024-07-26 18:10:48 -04:00
parent 884148f006
commit 793526238a

View File

@ -229,6 +229,7 @@ func (this *Scrollbar) handleButtonUp (button input.Button) bool {
func (this *Scrollbar) handleMouseMove () bool {
if !this.dragging { return false }
this.drag()
return true
}