mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-16 02:27:32 -05:00
Make terminal true-colour mode configurable.
I know some users don't like any colour _at all_, and we have a separate option to turn off xterm-style 256-colour sequences, so it seems remiss not to have an option to disable true colour as well.
This commit is contained in:
3
config.c
3
config.c
@ -1898,6 +1898,9 @@ void setup_config_box(struct controlbox *b, int midsession,
|
||||
ctrl_checkbox(s, "Allow terminal to use xterm 256-colour mode", '2',
|
||||
HELPCTX(colours_xterm256), conf_checkbox_handler,
|
||||
I(CONF_xterm_256_colour));
|
||||
ctrl_checkbox(s, "Allow terminal to use 24-bit colours", '4',
|
||||
HELPCTX(colours_truecolour), conf_checkbox_handler,
|
||||
I(CONF_true_colour));
|
||||
ctrl_radiobuttons(s, "Indicate bolded text by changing:", 'b', 3,
|
||||
HELPCTX(colours_bold),
|
||||
conf_radiobutton_handler, I(CONF_bold_style),
|
||||
|
Reference in New Issue
Block a user