# HG changeset patch # User Jonathan G Rennison # Date 2024-02-23 20:02:59 # Node ID 0d3a009d827a42584d4bd573144eaebfb0e54e0d # Parent 875cd04ceadf5a6010c26df43bf599a8b5c4defa Fix #12166: Crash when opening tram road stop build window (#12168) diff --git a/src/road_gui.cpp b/src/road_gui.cpp --- a/src/road_gui.cpp +++ b/src/road_gui.cpp @@ -1132,9 +1132,11 @@ private: const RoadStopSpec *spec = RoadStopClass::Get(_roadstop_gui_settings.roadstop_class)->GetSpec(_roadstop_gui_settings.roadstop_type); /* Raise and lower to ensure the correct widget is lowered after changing displayed orientation plane. */ - this->RaiseWidget(WID_BROS_STATION_NE + _roadstop_gui_settings.orientation); - this->GetWidget(WID_BROS_AVAILABLE_ORIENTATIONS)->SetDisplayedPlane((spec != nullptr && HasBit(spec->flags, RSF_DRIVE_THROUGH_ONLY)) ? 1 : 0); - this->LowerWidget(WID_BROS_STATION_NE + _roadstop_gui_settings.orientation); + if (RoadTypeIsRoad(_cur_roadtype)) { + this->RaiseWidget(WID_BROS_STATION_NE + _roadstop_gui_settings.orientation); + this->GetWidget(WID_BROS_AVAILABLE_ORIENTATIONS)->SetDisplayedPlane((spec != nullptr && HasBit(spec->flags, RSF_DRIVE_THROUGH_ONLY)) ? 1 : 0); + this->LowerWidget(WID_BROS_STATION_NE + _roadstop_gui_settings.orientation); + } if (_roadstop_gui_settings.orientation >= DIAGDIR_END) return;