mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-26 05:14:21 +00:00
Fix columnlistarea scroll wheel detection
This commit is contained in:
parent
8fb82f7d7a
commit
c159ae7828
@ -164,8 +164,16 @@ function newobject:mousepressed(x, y, button)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.bar and self:IsTopList() then
|
local bar = false
|
||||||
local bar = self:GetScrollBar()
|
if self.vbar and self.hbar then
|
||||||
|
bar = self:GetVerticalScrollBody():GetScrollBar()
|
||||||
|
elseif self.vbar and not self.hbar then
|
||||||
|
bar = self:GetVerticalScrollBody():GetScrollBar()
|
||||||
|
elseif not self.var and self.hbar then
|
||||||
|
bar = self:GetHorizontalScrollBody():GetScrollBar()
|
||||||
|
end
|
||||||
|
|
||||||
|
if self:IsTopList() and bar then
|
||||||
if self.dtscrolling then
|
if self.dtscrolling then
|
||||||
local dt = love.timer.getDelta()
|
local dt = love.timer.getDelta()
|
||||||
if button == "wu" then
|
if button == "wu" then
|
||||||
|
Loading…
Reference in New Issue
Block a user