Fixed: Use target_stepy to calculate dy for scrolling

--HG--
branch : develop
This commit is contained in:
Nimetu 2018-05-13 17:00:45 +03:00
parent a62c8eefd4
commit ebbb270bc1

View file

@ -1226,6 +1226,12 @@ namespace NLGUI
if(hReal <= maxHReal)
return;
if (_TargetStepY > 1)
{
sint sign = (0 < dy) - (dy < 0);
dy = sign * max(1, (dy / _TargetStepY)) * _TargetStepY;
}
// compute the new ofsY.
sint32 ofsY= _Target->getOfsY();
ofsY+= dy;