Add: show in the tooltip of disabled toolbar buttons why they are disabled

This commit is contained in:
Patric Stout
2021-01-07 23:06:23 +01:00
committed by Patric Stout
parent 85a49a0d36
commit af22a4f2cd
6 changed files with 38 additions and 1 deletions

View File

@@ -97,6 +97,11 @@ struct BuildAirToolbarWindow : Window {
WIDGET_LIST_END);
if (!can_build) {
DeleteWindowById(WC_BUILD_STATION, TRANSPORT_AIR);
/* Show in the tooltip why this button is disabled. */
this->GetWidget<NWidgetCore>(WID_AT_AIRPORT)->SetToolTip(STR_TOOLBAR_DISABLED_NO_VEHICLE_AVAILABLE);
} else {
this->GetWidget<NWidgetCore>(WID_AT_AIRPORT)->SetToolTip(STR_TOOLBAR_AIRCRAFT_BUILD_AIRPORT_TOOLTIP);
}
}