Add support for increasing the scrolling speed
cecilia-sanare opened this issue ยท 1 comments
Description
Users should be able to adjust the scroll speed of the tracker.
Hiya, for right now we can adjust the following in "\ButterQuestTracker\TrackerHelper\Modules\TrackerFrame.lua" to get a suitable scrolling speed:
==========THIS_CODE==========
--LINE:188--
-- Events
function Frame:OnMouseWheel(value)
local _, _, _, _, y = self.content:GetPoint("TOP");
self.content:SetPoint("TOP", self, 0, y + 10 * -value);
self:_clampScroll(self.content);
end
==========THIS_CODE==========
Change the 10 to a better value. 30 works pretty good for me.