mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-18 19:41:01 -05:00
Make ESC[3J (clear scrollback) a disableable escape sequence.
A user complained that it was being done nonconsensually, and it seems reasonable that the user should have the choice to prevent it.
This commit is contained in:
4
config.c
4
config.c
@ -1690,6 +1690,10 @@ void setup_config_box(struct controlbox *b, int midsession,
|
||||
HELPCTX(features_retitle),
|
||||
conf_checkbox_handler,
|
||||
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,
|
||||
HELPCTX(features_qtitle),
|
||||
conf_radiobutton_handler,
|
||||
|
Reference in New Issue
Block a user