mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 01:02:24 +00:00
Cosmetic rearrangement of Terminal/Features panel.
Move "Response to remote title query" next to "Disable remote-controlled window title changing"; that seems more logical, and matches the documentation.
This commit is contained in:
parent
03daa60277
commit
2cc75131e1
8
config.c
8
config.c
@ -1821,10 +1821,6 @@ void setup_config_box(struct controlbox *b, bool midsession,
|
|||||||
HELPCTX(features_retitle),
|
HELPCTX(features_retitle),
|
||||||
conf_checkbox_handler,
|
conf_checkbox_handler,
|
||||||
I(CONF_no_remote_wintitle));
|
I(CONF_no_remote_wintitle));
|
||||||
ctrl_checkbox(s, "Disable remote-controlled clearing of scrollback", 'e',
|
|
||||||
HELPCTX(features_clearscroll),
|
|
||||||
conf_checkbox_handler,
|
|
||||||
I(CONF_no_remote_clearscroll));
|
|
||||||
ctrl_radiobuttons(s, "Response to remote title query (SECURITY):", 'q', 3,
|
ctrl_radiobuttons(s, "Response to remote title query (SECURITY):", 'q', 3,
|
||||||
HELPCTX(features_qtitle),
|
HELPCTX(features_qtitle),
|
||||||
conf_radiobutton_handler,
|
conf_radiobutton_handler,
|
||||||
@ -1832,6 +1828,10 @@ void setup_config_box(struct controlbox *b, bool midsession,
|
|||||||
"None", I(TITLE_NONE),
|
"None", I(TITLE_NONE),
|
||||||
"Empty string", I(TITLE_EMPTY),
|
"Empty string", I(TITLE_EMPTY),
|
||||||
"Window title", I(TITLE_REAL), NULL);
|
"Window title", I(TITLE_REAL), NULL);
|
||||||
|
ctrl_checkbox(s, "Disable remote-controlled clearing of scrollback", 'e',
|
||||||
|
HELPCTX(features_clearscroll),
|
||||||
|
conf_checkbox_handler,
|
||||||
|
I(CONF_no_remote_clearscroll));
|
||||||
ctrl_checkbox(s, "Disable destructive backspace on server sending ^?",'b',
|
ctrl_checkbox(s, "Disable destructive backspace on server sending ^?",'b',
|
||||||
HELPCTX(features_dbackspace),
|
HELPCTX(features_dbackspace),
|
||||||
conf_checkbox_handler, I(CONF_no_dbackspace));
|
conf_checkbox_handler, I(CONF_no_dbackspace));
|
||||||
|
Loading…
Reference in New Issue
Block a user