We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
List
1 parent a834707 commit a8df9a8Copy full SHA for a8df9a8
src/libs/beGUI/beGUI_Containers.lua
@@ -109,7 +109,7 @@ local List = beClass.class({
109
if self._pressedTimestamp ~= nil then
110
local diff = DateTime.toSeconds(now - self._pressedTimestamp)
111
if diff < 0.3 and self._pressedPosition ~= self._pressingPosition then
112
- if self._scrollableHorizontally then
+ if self._scrollableHorizontally and w < self._maxX then
113
local diff = self._pressedPosition - self._pressingPosition
114
if math.abs(diff.x) < math.abs(diff.y) then
115
self._scrolling = 'y'
0 commit comments