# HG changeset patch # User terkhen # Date 2010-04-12 17:58:09 # Node ID 43e9f15bd64bb457fc5705089a65e54db798e8e7 # Parent 2648a73e4ab8f3f12d2ff9cd894309ee7b697e11 (svn r19615) -Fix [FS#3763]: Company related graphs weren't updated correctly after changing the company colour. diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -969,6 +969,13 @@ CommandCost CmdSetCompanyColour(TileInde ResetVehicleColourMap(); MarkWholeScreenDirty(); + /* All graph related to companies use the company colour. */ + InvalidateWindowData(WC_INCOME_GRAPH, 0); + InvalidateWindowData(WC_OPERATING_PROFIT, 0); + InvalidateWindowData(WC_DELIVERED_CARGO, 0); + InvalidateWindowData(WC_PERFORMANCE_HISTORY, 0); + InvalidateWindowData(WC_COMPANY_VALUE, 0); + /* Company colour data is indirectly cached. */ Vehicle *v; FOR_ALL_VEHICLES(v) { diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp --- a/src/graph_gui.cpp +++ b/src/graph_gui.cpp @@ -528,7 +528,7 @@ public: virtual void OnInvalidateData(int data) { - this->OnTick(); + this->UpdateStatistics(true); } /**