1
0
Fork 0

(svn r14086) -Fix (r13067): rail/road removing by CTRL didn't sometimes work when a depot window was opened

release/0.7
smatz 2008-08-16 18:01:23 +00:00
parent 9751fbe4dc
commit 25a1c59abb
1 changed files with 2 additions and 1 deletions

View File

@ -1019,9 +1019,10 @@ struct DepotWindow : Window {
if (this->sel != INVALID_VEHICLE) {
_cursor.vehchain = _ctrl_pressed;
this->InvalidateWidget(DEPOT_WIDGET_MATRIX);
return ES_HANDLED;
}
return ES_HANDLED;
return ES_NOT_HANDLED;
}
};