Changeset - r25:60fcb0b467ff
[Not reviewed]
master
0 1 0
truelight - 20 years ago 2004-08-12 17:11:47
truelight@openttd.org
(svn r26) Fix orderwindow issue
1 file changed with 9 insertions and 1 deletions:
0 comments (0 inline, 0 general)
order_gui.c
Show inline comments
 
@@ -344,7 +344,15 @@ static void OrdersWndProc(Window *w, Win
 
	// check if a vehicle in a depot was clicked..
 
	case WE_MOUSELOOP: {
 
		Vehicle *v = _place_clicked_vehicle;
 
		if (v) {
 
		/*
 
		 * Check if we clicked on a vehicle
 
		 * and if the GOTO button of this window is pressed
 
		 * This is because of all open order windows WE_MOUSELOOP is called
 
		 * and if you have 3 windows open, and this check is not done
 
		 * the order is copied to the last open window instead of the
 
		 * one where GOTO is enalbed
 
		 */
 
		if (v && HASBIT(w->click_state, 7)) {
 
			_place_clicked_vehicle = NULL;
 
			HandleOrderVehClick(&_vehicles[w->window_number], v, w);
 
		}
0 comments (0 inline, 0 general)