Remove number of days from hard-coded X axis label string

To support later day number changes and/or translations
This commit is contained in:
Jonathan G Rennison
2021-06-29 18:26:28 +01:00
parent 5698507d0b
commit 37c7cf9899
2 changed files with 4 additions and 1 deletions

View File

@@ -1694,6 +1694,9 @@ struct StationCargoGraphWindow final : BaseGraphWindow {
if (widget == WID_SCG_CAPTION) {
SetDParam(0, this->station_id);
}
if (widget == WID_SCG_FOOTER) {
SetDParam(0, 48);
}
}
void UpdateExcludedData()