1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

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.
This commit is contained in:
Jacob Nevins 2018-09-26 23:38:56 +01:00
parent b5c840431a
commit 07313e9466

View File

@ -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));