# HG changeset patch # User peter1138 # Date 1143904756 0 # Node ID d728e37930419171c62317eb0ed65271b8454092 # Parent bebbb9d71cc8da872a0e315a119937072e8b1833 (svn r4229) [elrail & autoreplace] Always show compatible rail vehicles in the left list, and only the selected rail type in the right list, to allow converting electric engines to non-electric. diff -r bebbb9d71cc8 -r d728e3793041 vehicle_gui.c --- a/vehicle_gui.c Sat Apr 01 15:11:30 2006 +0000 +++ b/vehicle_gui.c Sat Apr 01 15:19:16 2006 +0000 @@ -473,7 +473,7 @@ colour = *sel == 0 ? 0xC : 0x10; if (!(ENGINE_AVAILABLE && show_outdated && RailVehInfo(i)->power && e->railtype == railtype)) { - if ((!HasPowerOnRail(e->railtype, railtype) && show_compatible) + if ((!IsCompatibleRail(e->railtype, railtype) && show_compatible) || (e->railtype != railtype && !show_compatible) || !(rvi->flags & RVI_WAGON) != is_engine || !HASBIT(e->player_avail, _local_player)) @@ -529,7 +529,7 @@ if (ENGINE_AVAILABLE && ( (RailVehInfo(eid)->power != 0 && WP(w, replaceveh_d).wagon_btnstate) || (RailVehInfo(eid)->power == 0 && !WP(w, replaceveh_d).wagon_btnstate))) { - if (HasPowerOnRail(e->railtype, railtype) && (_player_num_engines[eid] > 0 || EngineHasReplacementForPlayer(p, eid))) { + if (IsCompatibleRail(e->railtype, railtype) && (_player_num_engines[eid] > 0 || EngineHasReplacementForPlayer(p, eid))) { if (sel[0] == count) selected_id[0] = eid; count++; } @@ -1008,6 +1008,9 @@ case WE_DROPDOWN_SELECT: /* we have selected a dropdown item in the list */ _railtype_selected_in_replace_gui = e->dropdown.index; + /* Reset scrollbar positions */ + w->vscroll.pos = 0; + w->vscroll2.pos = 0; SetWindowDirty(w); break;