From 9a05d03e2cdf4d688954c9e9d36ce465ddc81cee Mon Sep 17 00:00:00 2001 From: truebrain Date: Tue, 3 Jan 2012 10:27:14 +0000 Subject: [PATCH] (svn r23728) -Fix [#FS4942-ish]: when cheating into another company, the SignList was not updated --- src/company_cmd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp index d4627078f2..ea15b074f2 100644 --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -112,6 +112,7 @@ void SetLocalCompany(CompanyID new_company) /* ... and redraw the whole screen. */ MarkWholeScreenDirty(); + InvalidateWindowClassesData(WC_SIGN_LIST, -1); } /**