mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r1613) -Fix: WE_CLICK event is not called on default actions. If special action is needed, use the other events like WE_RESIZE or WE_DESTROY, etc.
This commit is contained in:
parent
bb276ef5a9
commit
ae792cedde
13
window.c
13
window.c
@ -54,17 +54,22 @@ void DispatchLeftClickEvent(Window *w, int x, int y) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (e.click.widget == 1) /* 'Title bar' */
|
||||
StartWindowDrag(w);
|
||||
if (e.click.widget == 1) { /* 'Title bar' */
|
||||
StartWindowDrag(w); // if not return then w = StartWindowDrag(w); to get correct pointer
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (w->desc_flags & WDF_RESIZABLE && wi->type == WWT_RESIZEBOX)
|
||||
w = StartWindowSizing(w);
|
||||
if (w->desc_flags & WDF_RESIZABLE && wi->type == WWT_RESIZEBOX) {
|
||||
StartWindowSizing(w); // if not return then w = StartWindowSizing(w); to get correct pointer
|
||||
return;
|
||||
}
|
||||
|
||||
if (w->desc_flags & WDF_STICKY_BUTTON && wi->type == WWT_STICKYBOX) {
|
||||
TOGGLEBIT(w->click_state, e.click.widget);
|
||||
w->flags4 ^= WF_STICKY;
|
||||
InvalidateWidget(w, e.click.widget);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user