mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
Make GUITable mouse wheel scrolling faster
This commit is contained in:
parent
f383766dbf
commit
6ee0db6fec
@ -833,7 +833,7 @@ bool GUITable::OnEvent(const SEvent &event)
|
||||
|
||||
if (event.MouseInput.Event == EMIE_MOUSE_WHEEL) {
|
||||
m_scrollbar->setPos(m_scrollbar->getPos() +
|
||||
(event.MouseInput.Wheel < 0 ? -1 : 1) *
|
||||
(event.MouseInput.Wheel < 0 ? -3 : 3) *
|
||||
- (s32) m_rowheight / 2);
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user