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/ai | |
parent | f580ab4ba460c307cd9d4037815e69e7a8185541 (diff) | |
download | openttd-de891238d6e987bc2d3411164e6a3eb1e3cbbd72.tar.xz |
Change: Recolour graph windows to brown (#8700)
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 8db22e41b..4c0330bc7 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -1431,7 +1431,7 @@ StringFilter AIDebugWindow::break_string_filter(&AIDebugWindow::case_sensitive_b /** Make a number of rows with buttons for each company for the AI debug window. */ NWidgetBase *MakeCompanyButtonRowsAIDebug(int *biggest_index) { - return MakeCompanyButtonRows(biggest_index, WID_AID_COMPANY_BUTTON_START, WID_AID_COMPANY_BUTTON_END, 8, STR_AI_DEBUG_SELECT_AI_TOOLTIP); + return MakeCompanyButtonRows(biggest_index, WID_AID_COMPANY_BUTTON_START, WID_AID_COMPANY_BUTTON_END, COLOUR_GREY, 8, STR_AI_DEBUG_SELECT_AI_TOOLTIP); } /** |