Changeset - r4747:5cc6d82f950f
[Not reviewed]
master
0 1 0
glx - 18 years ago 2006-10-05 23:38:40
glx@openttd.org
(svn r6659) -Fix r6619: Fix widget state setting of the rail toolbar when using global hotkeys.
1 file changed with 4 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rail_gui.c
Show inline comments
 
@@ -600,7 +600,10 @@ void ShowBuildRailToolbar(RailType railt
 
	}
 

	
 
	_remove_button_clicked = false;
 
	if (w != NULL && button >= 0) _build_railroad_button_proc[button](w);
 
	if (w != NULL && button >= 0) {
 
		_build_railroad_button_proc[button](w);
 
		UpdateRemoveWidgetStatus(w, button + 4);
 
	}
 
	if (_patches.link_terraform_toolbar) ShowTerraformToolbar();
 
}
 

	
0 comments (0 inline, 0 general)