# HG changeset patch # User frosch # Date 2010-07-17 15:06:28 # Node ID c67eca43678ee609831bcc8d0412612789e79972 # Parent 866266be392a7b84df9b3e69fe692513d290aa3e (svn r20174) -Codechange [FS#3955]: Allow horizontal resizing for all vehicle lists. diff --git a/src/vehicle_gui.cpp b/src/vehicle_gui.cpp --- a/src/vehicle_gui.cpp +++ b/src/vehicle_gui.cpp @@ -863,7 +863,7 @@ static const NWidgetPart _nested_vehicle EndContainer(), NWidget(NWID_HORIZONTAL), - NWidget(WWT_MATRIX, COLOUR_GREY, VLW_WIDGET_LIST), SetMinimalSize(248, 0), SetFill(1, 0), + NWidget(WWT_MATRIX, COLOUR_GREY, VLW_WIDGET_LIST), SetMinimalSize(248, 0), SetFill(1, 0), SetResize(1, 1), NWidget(WWT_SCROLLBAR, COLOUR_GREY, VLW_WIDGET_SCROLLBAR), EndContainer(), @@ -1089,13 +1089,10 @@ public: { switch (widget) { case VLW_WIDGET_LIST: - resize->width = 0; resize->height = GetVehicleListHeight(this->vehicle_type, 1); switch (this->vehicle_type) { case VEH_TRAIN: - resize->width = 1; - /* Fallthrough */ case VEH_ROAD: size->height = 6 * resize->height; break;