# HG changeset patch # User bjarni # Date 1157717437 0 # Node ID 36d83e0e99ecdde7047ef01d76853da9e03b8bee # Parent 308afd09d2cd07bbee970114d1cd6b5bb3aea4f7 (svn r6429) -Fix: [autoreplace GUI] selecting an empty line will now deselect the engine instead of selecting the first in the list (consistent with all other windows) -Fix: [autoreplace GUI] engine info is now drawn in the right side even if the left list is empty diff -r 308afd09d2cd -r 36d83e0e99ec vehicle_gui.c --- a/vehicle_gui.c Fri Sep 08 11:53:05 2006 +0000 +++ b/vehicle_gui.c Fri Sep 08 12:10:37 2006 +0000 @@ -792,34 +792,6 @@ selected_id[0] = WP(w,replaceveh_d).sel_engine[0]; selected_id[1] = WP(w,replaceveh_d).sel_engine[1]; - // sets the selected left item to the top one if it's greater than the number of vehicles in the left side - - if (WP(w,replaceveh_d).count[0] <= sel[0]) { - if (WP(w,replaceveh_d).count[0]) { - sel[0] = 0; - WP(w,replaceveh_d).sel_index[0] = 0; - w->vscroll.pos = 0; - // now we go back to set selected_id[1] properly - SetWindowDirty(w); - return; - } else { //there are no vehicles in the left window - selected_id[1] = INVALID_ENGINE; - } - } - - if (WP(w,replaceveh_d).count[1] <= sel[1]) { - if (WP(w,replaceveh_d).count[1]) { - sel[1] = 0; - WP(w,replaceveh_d).sel_index[1] = 0; - w->vscroll2.pos = 0; - // now we go back to set selected_id[1] properly - SetWindowDirty(w); - return; - } else { //there are no vehicles in the right window - selected_id[1] = INVALID_ENGINE; - } - } - // Disable the "Start Replacing" button if: // Either list is empty // or Both lists have the same vehicle selected