(svn r1211) -Feature: Introduce sticky windows to all vehicle windows...Just make sure you do not sticky more than 23 at a time. Also a lot of places in the code invalidated the 'status bar' of the vehicle, referring to it as widget 4. This is now widget 5 and has been #definitized

This commit is contained in:
darkvater
2004-12-21 23:27:58 +00:00
parent 6e1353ed98
commit 452db59121
13 changed files with 90 additions and 76 deletions

View File

@@ -1489,7 +1489,7 @@ void EndVehicleMove(Vehicle *v)
void InvalidateVehicleOrderWidget(Vehicle *v)
{
InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, 4);
InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR);
InvalidateWindowWidget(WC_VEHICLE_ORDERS, v->index, 2);
}