From 2b59f0edcac51008b3f72163698b6a9750da3a1f Mon Sep 17 00:00:00 2001 From: Eric Wald Date: Sun, 17 Aug 2014 12:38:13 -0600 Subject: [PATCH] Switching Mark/Unmark all hotkeys to red Following the policy described in the Readme. --- plugins/autotrade.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/autotrade.cpp b/plugins/autotrade.cpp index 527f00cef..c7b1b6ecb 100644 --- a/plugins/autotrade.cpp +++ b/plugins/autotrade.cpp @@ -487,12 +487,12 @@ struct tradeview_hook : public df::viewscreen_tradegoodsst int y = dim.y - 5; int x = 2; - OutputHotkeyString(x, y, "Mark all, ", "m"); - OutputHotkeyString(x, y, "Unmark all", "u"); + OutputHotkeyString(x, y, "Mark all, ", "m", false, x, COLOR_WHITE, COLOR_LIGHTRED); + OutputHotkeyString(x, y, "Unmark all", "u", false, x, COLOR_WHITE, COLOR_LIGHTRED); x = 42; - OutputHotkeyString(x, y, "Mark all, ", "M"); - OutputHotkeyString(x, y, "Unmark all", "U"); + OutputHotkeyString(x, y, "Mark all, ", "M", false, x, COLOR_WHITE, COLOR_LIGHTRED); + OutputHotkeyString(x, y, "Unmark all", "U", false, x, COLOR_WHITE, COLOR_LIGHTRED); } };