File diff r4847:3a5813957a8e → r4848:23347d73ba8f
airport_gui.c
Show inline comments
 
@@ -124,25 +124,25 @@ static const Widget _air_toolbar_widgets
 

	
 

	
 
static const WindowDesc _air_toolbar_desc = {
 
	640-86, 22, 86, 36,
 
	WC_BUILD_TOOLBAR,0,
 
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_STICKY_BUTTON,
 
	_air_toolbar_widgets,
 
	BuildAirToolbWndProc
 
};
 

	
 
void ShowBuildAirToolbar(void)
 
{
 
	if (_current_player == OWNER_SPECTATOR) return;
 
	if (_current_player == PLAYER_SPECTATOR) return;
 
	DeleteWindowById(WC_BUILD_TOOLBAR, 0);
 
	AllocateWindowDescFront(&_air_toolbar_desc, 0);
 
	if (_patches.link_terraform_toolbar) ShowTerraformToolbar();
 
}
 

	
 
static void BuildAirportPickerWndProc(Window *w, WindowEvent *e)
 
{
 
	switch (e->event) {
 
	case WE_CREATE:
 
		SetWindowWidgetLoweredState(w, 16, !_station_show_coverage);
 
		SetWindowWidgetLoweredState(w, 17, _station_show_coverage);
 
		LowerWindowWidget(w, _selected_airport_type + 7);