summaryrefslogtreecommitdiff
path: root/smallmap_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'smallmap_gui.c')
-rw-r--r--smallmap_gui.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/smallmap_gui.c b/smallmap_gui.c
index d5a2b5342..fcb80a67b 100644
--- a/smallmap_gui.c
+++ b/smallmap_gui.c
@@ -1070,6 +1070,13 @@ static void ExtraViewPortWndProc(Window *w, WindowEvent *e)
case WE_MOUSEWHEEL:
ZoomInOrOutToCursorWindow(e->we.wheel.wheel < 0, w);
break;
+
+
+ case WE_MESSAGE:
+ /* Only handle zoom message if intended for us (msg ZOOM_IN/ZOOM_OUT) */
+ if (e->we.message.wparam != w->window_number) break;
+ HandleZoomMessage(w, w->viewport, 5, 6);
+ break;
}
}