MCPcopy Create free account
hub / github.com/OpenTTD/OpenTTD / OnMouseWheel

Method OnMouseWheel

src/viewport_gui.cpp:127–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125 }
126
127 void OnMouseWheel(int wheel, WidgetID widget) override
128 {
129 if (widget != WID_EV_VIEWPORT) return;
130 if (_settings_client.gui.scrollwheel_scrolling != SWS_OFF) {
131 ZoomInOrOutToCursorWindow(wheel < 0, this);
132 }
133 }
134
135 /**
136 * Some data on this window has become invalid.

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected