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:
parent
b5c840431a
commit
07313e9466
2
config.c
2
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));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user