diff options
Diffstat (limited to 'depot_gui.c')
-rw-r--r-- | depot_gui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/depot_gui.c b/depot_gui.c index c52dfed7a..c3b1c1988 100644 --- a/depot_gui.c +++ b/depot_gui.c @@ -692,7 +692,7 @@ static void DepotWndProc(Window *w, WindowEvent *e) } break; case WE_ABORT_PLACE_OBJ: { - CLRBIT(w->click_state, DEPOT_WIDGET_CLONE); + RaiseWindowWidget(w, DEPOT_WIDGET_CLONE); InvalidateWidget(w, DEPOT_WIDGET_CLONE); } break; @@ -701,7 +701,7 @@ static void DepotWndProc(Window *w, WindowEvent *e) const Vehicle *v = _place_clicked_vehicle; /* since OTTD checks all open depot windows, we will make sure that it triggers the one with a clicked clone button */ - if (v != NULL && HASBIT(w->click_state, DEPOT_WIDGET_CLONE)) { + if (v != NULL && IsWindowWidgetLowered(w, DEPOT_WIDGET_CLONE)) { _place_clicked_vehicle = NULL; HandleCloneVehClick(v, w); } |