mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-26 16:09:10 +00:00
(svn r18093) -Fix: the mouseover handler could crash if there wasn't a widget under the mouse
This commit is contained in:
@@ -1333,8 +1333,8 @@ static bool HandleMouseOver()
|
||||
if (w != NULL) {
|
||||
/* send an event in client coordinates. */
|
||||
Point pt = { _cursor.pos.x - w->left, _cursor.pos.y - w->top };
|
||||
int widget = w->nested_root->GetWidgetFromPos(pt.x, pt.y)->index;
|
||||
w->OnMouseOver(pt, widget);
|
||||
const NWidgetCore *widget = w->nested_root->GetWidgetFromPos(pt.x, pt.y);
|
||||
if (widget != NULL) w->OnMouseOver(pt, widget->index);
|
||||
}
|
||||
|
||||
/* Mouseover never stops execution */
|
||||
|
Reference in New Issue
Block a user