diff options
author | Tyler Trahan <tyler@tylertrahan.com> | 2021-03-11 09:30:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-11 15:30:29 +0100 |
commit | de891238d6e987bc2d3411164e6a3eb1e3cbbd72 (patch) | |
tree | 6448c626f1ca78ec4f5861a1d2f02932db711305 /src/linkgraph | |
parent | f580ab4ba460c307cd9d4037815e69e7a8185541 (diff) | |
download | openttd-de891238d6e987bc2d3411164e6a3eb1e3cbbd72.tar.xz |
Change: Recolour graph windows to brown (#8700)
Diffstat (limited to 'src/linkgraph')
-rw-r--r-- | src/linkgraph/linkgraph_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linkgraph/linkgraph_gui.cpp b/src/linkgraph/linkgraph_gui.cpp index efdf425da..2d715aaf5 100644 --- a/src/linkgraph/linkgraph_gui.cpp +++ b/src/linkgraph/linkgraph_gui.cpp @@ -375,7 +375,7 @@ void LinkGraphOverlay::SetCompanyMask(uint32 company_mask) /** Make a number of rows with buttons for each company for the linkgraph legend window. */ NWidgetBase *MakeCompanyButtonRowsLinkGraphGUI(int *biggest_index) { - return MakeCompanyButtonRows(biggest_index, WID_LGL_COMPANY_FIRST, WID_LGL_COMPANY_LAST, 3, STR_NULL); + return MakeCompanyButtonRows(biggest_index, WID_LGL_COMPANY_FIRST, WID_LGL_COMPANY_LAST, COLOUR_GREY, 3, STR_NULL); } NWidgetBase *MakeSaturationLegendLinkGraphGUI(int *biggest_index) |