We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 438082b commit 07795beCopy full SHA for 07795be
graphics/macgui/macwindowmanager.cpp
@@ -1104,6 +1104,11 @@ bool MacWindowManager::processEvent(Common::Event &event) {
1104
return true;
1105
}
1106
1107
+ if (event.type == Common::EVENT_WHEELUP || event.type == Common::EVENT_WHEELDOWN) {
1108
+ MacWindow *w = findWindowAtPoint(event.mouse.x, event.mouse.y);
1109
+ if (w) setActiveWindow(w->getId());
1110
+ }
1111
+
1112
if (_activeWindow != -1) {
1113
if ((_windows[_activeWindow]->isEditable() && _windows[_activeWindow]->getType() == kWindowWindow &&
1114
((MacWindow *)_windows[_activeWindow])->getInnerDimensions().contains(event.mouse.x, event.mouse.y)) ||
0 commit comments