Fix returned `percent` when clicking the `Scrollbar` `track`

This commit is contained in:
Guldoman 2023-08-23 19:07:52 +02:00 committed by George Sokianos
parent 50102fdc3a
commit 9bc44e2b45
1 changed files with 2 additions and 1 deletions

View File

@ -189,8 +189,9 @@ function Scrollbar:_on_mouse_pressed_normal(button, x, y, clicks)
self.drag_start_offset = along - y
return true
elseif overlaps == "track" then
local nr = self.normal_rect
self.drag_start_offset = - along_size / 2
return (y - self.normal_rect.along - along_size / 2) / self.normal_rect.along_size
return common.clamp((y - nr.along - along_size / 2) / (nr.along_size - along_size), 0, 1)
end
end
end