mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-18 03:20:59 -05:00
Introduce a third setting for the 'bold as colour' mode, which lets
you both brighten the colour _and_ bold the font at the same time. (Fixes 'bold-font-colour' and Debian #193352.) [originally from svn r9559]
This commit is contained in:
10
config.c
10
config.c
@ -1790,9 +1790,13 @@ 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, "Bolded text is a different colour", 'b',
|
||||
HELPCTX(colours_bold),
|
||||
conf_checkbox_handler, I(CONF_bold_colour));
|
||||
ctrl_radiobuttons(s, "Indicate bolded text by changing:", 'b', 3,
|
||||
HELPCTX(colours_bold),
|
||||
conf_radiobutton_handler, I(CONF_bold_style),
|
||||
"The font", I(1),
|
||||
"The colour", I(2),
|
||||
"Both", I(3),
|
||||
NULL);
|
||||
|
||||
str = dupprintf("Adjust the precise colours %s displays", appname);
|
||||
s = ctrl_getset(b, "Window/Colours", "adjust", str);
|
||||
|
Reference in New Issue
Block a user