diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 0030d034f4..cacfd22d4d 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -27,6 +27,7 @@ - Fix: [#21974] No reason specified when attempting to place benches, lamps, or bins on path with no unconnected edges (original bug). - Fix: [#22008] Uninverted Lay-down roller coaster uses the wrong support type. - Fix: [#22012] [Plugin] Images on ImgButton widgets cannot be updated. +- Fix: [#22121] Some news items in the “Recent Messages” window have the wrong text colour. 0.4.11 (2024-05-05) ------------------------------------------------------------------------ diff --git a/src/openrct2-ui/windows/News.cpp b/src/openrct2-ui/windows/News.cpp index 09a01e066b..c9e1a3d415 100644 --- a/src/openrct2-ui/windows/News.cpp +++ b/src/openrct2-ui/windows/News.cpp @@ -208,7 +208,9 @@ static Widget window_news_widgets[] = { { auto ft = Formatter(); ft.Add(newsItem.Text.c_str()); - DrawTextWrapped(dpi, { 2, y + lineHeight }, 325, STR_BOTTOM_TOOLBAR_NEWS_TEXT, ft, { FontStyle::Small }); + DrawTextWrapped( + dpi, { 2, y + lineHeight }, 325, STR_BOTTOM_TOOLBAR_NEWS_TEXT, ft, + { COLOUR_BRIGHT_GREEN, FontStyle::Small }); } // Subject button if ((newsItem.TypeHasSubject()) && !(newsItem.HasButton()))