From 07313e94661071fa252c1db80806f225d2012995 Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Wed, 26 Sep 2018 23:38:56 +0100 Subject: [PATCH] Fix shortcut clash in Windows builds. The 'Include header' option added in 822d2fd4c3 used the shortcut 'h', which clashed with the 'Help' button, causing an assertion failure. --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 26d57acc..caab152c 100644 --- a/config.c +++ b/config.c @@ -1628,7 +1628,7 @@ void setup_config_box(struct controlbox *b, int midsession, ctrl_checkbox(s, "Flush log file frequently", 'u', HELPCTX(logging_flush), conf_checkbox_handler, I(CONF_logflush)); - ctrl_checkbox(s, "Include header", 'h', + ctrl_checkbox(s, "Include header", 'i', HELPCTX(logging_header), conf_checkbox_handler, I(CONF_logheader));