summaryrefslogtreecommitdiff
path: root/src/smallmap_gui.cpp
diff options
context:
space:
mode:
authorAlexander Weiss <ik@alexanderweiss.nl>2018-04-28 00:12:49 +0200
committerMichael Lutz <michi@icosahedron.de>2018-05-24 21:31:37 +0200
commite1a164b5316a6242d69d56b53c9df19edb9d279f (patch)
treed818e4d7ff211cd34cb458099be113b31ba2ea9a /src/smallmap_gui.cpp
parent6df7ced343deb150323f709822b5fde1e8fe1d97 (diff)
downloadopenttd-e1a164b5316a6242d69d56b53c9df19edb9d279f.tar.xz
Change: [OSX] Setting mouse-wheel to scroll the map does not disable pinch to zoom
Diffstat (limited to 'src/smallmap_gui.cpp')
-rw-r--r--src/smallmap_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp
index 6b234ee90..7e3e75953 100644
--- a/src/smallmap_gui.cpp
+++ b/src/smallmap_gui.cpp
@@ -1559,7 +1559,7 @@ int SmallMapWindow::GetPositionOnLegend(Point pt)
/* virtual */ void SmallMapWindow::OnMouseWheel(int wheel)
{
- if (_settings_client.gui.scrollwheel_scrolling == 0) {
+ if (_settings_client.gui.scrollwheel_scrolling != 2) {
const NWidgetBase *wid = this->GetWidget<NWidgetBase>(WID_SM_MAP);
int cursor_x = _cursor.pos.x - this->left - wid->pos_x;
int cursor_y = _cursor.pos.y - this->top - wid->pos_y;