From 8b314ffd1faf9f87251d4706125ab76f42c573c6 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Tue, 26 Jun 2007 08:11:11 +0000 Subject: [PATCH] (svn r10337) -Fix [FS#880]: Autoreplace is only valid for the standard vehicle list, not station or shared order lists. --- src/vehicle_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp index c7579ec4ae..b340c9f88e 100644 --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -1111,7 +1111,7 @@ void PlayerVehWndProc(Window *w, WindowEvent *e) /* XXX - Substite string since the dropdown cannot handle dynamic strings */ action_str[2] = depot_name[vl->vehicle_type]; - ShowDropDownMenu(w, action_str, 0, VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN, 0, 0); + ShowDropDownMenu(w, action_str, 0, VLW_WIDGET_MANAGE_VEHICLES_DROPDOWN, 0, (w->window_number & VLW_MASK) == VLW_STANDARD ? 0 : 1); break; }