summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/company_cmd.cpp3
-rw-r--r--src/date.cpp3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp
index fee312b8d..21f7125b7 100644
--- a/src/company_cmd.cpp
+++ b/src/company_cmd.cpp
@@ -35,6 +35,7 @@
#include "game/game.hpp"
#include "goal_base.h"
#include "story_base.h"
+#include "widgets/statusbar_widget.h"
#include "table/strings.h"
@@ -182,7 +183,7 @@ void InvalidateCompanyWindows(const Company *company)
{
CompanyID cid = company->index;
- if (cid == _local_company) SetWindowDirty(WC_STATUS_BAR, 0);
+ if (cid == _local_company) SetWindowWidgetDirty(WC_STATUS_BAR, 0, WID_S_RIGHT);
SetWindowDirty(WC_FINANCES, cid);
}
diff --git a/src/date.cpp b/src/date.cpp
index 18e1ad180..0fd98c42b 100644
--- a/src/date.cpp
+++ b/src/date.cpp
@@ -19,6 +19,7 @@
#include "linkgraph/linkgraph.h"
#include "saveload/saveload.h"
#include "newgrf_profiling.h"
+#include "widgets/statusbar_widget.h"
#include "safeguards.h"
@@ -255,7 +256,7 @@ static void OnNewDay()
DisasterDailyLoop();
IndustryDailyLoop();
- SetWindowWidgetDirty(WC_STATUS_BAR, 0, 0);
+ SetWindowWidgetDirty(WC_STATUS_BAR, 0, WID_S_LEFT);
EnginesDailyLoop();
/* Refresh after possible snowline change */