Fix returned percent when clicking the Scrollbar track

This commit is contained in:
Guldoman
2023-08-26 08:56:35 +08:00
committed by takase1121
parent 890e4882f3
commit 397b61e7c6
+2 -1
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