summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/guiTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guiTable.cpp b/src/guiTable.cpp
index e2da4eada..6ce857486 100644
--- a/src/guiTable.cpp
+++ b/src/guiTable.cpp
@@ -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;
}