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
Родитель b5c840431a
Коммит 07313e9466
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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