Changeset - r9931:229afbd73757
[Not reviewed]
master
0 1 0
smatz - 16 years ago 2008-08-16 18:01:23
smatz@openttd.org
(svn r14086) -Fix (r13067): rail/road removing by CTRL didn't sometimes work when a depot window was opened
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/depot_gui.cpp
Show inline comments
 
@@ -1019,9 +1019,10 @@ struct DepotWindow : Window {
 
		if (this->sel != INVALID_VEHICLE) {
 
			_cursor.vehchain = _ctrl_pressed;
 
			this->InvalidateWidget(DEPOT_WIDGET_MATRIX);
 
			return ES_HANDLED;
 
		}
 

	
 
		return ES_HANDLED;
 
		return ES_NOT_HANDLED;
 
	}
 
};
 

	
0 comments (0 inline, 0 general)