mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 06:38:37 -05:00
Revert the default for font bolding style back to using colours rather
than fonts. I broke this in r9559 when I added the option for 'both', because the internal representation got offset by one so as to change from a boolean to two bitfields and I must have confused myself about what the default should be. [originally from svn r10008] [r9559 == bc6e0952ef1c27c577318ee3c0883c7823c7005b]
This commit is contained in:
parent
95f581339d
commit
c0b6e0b962
@ -866,7 +866,7 @@ void load_open_settings(void *sesskey, Conf *conf)
|
|||||||
gppi(sesskey, "TryPalette", 0, conf, CONF_try_palette);
|
gppi(sesskey, "TryPalette", 0, conf, CONF_try_palette);
|
||||||
gppi(sesskey, "ANSIColour", 1, conf, CONF_ansi_colour);
|
gppi(sesskey, "ANSIColour", 1, conf, CONF_ansi_colour);
|
||||||
gppi(sesskey, "Xterm256Colour", 1, conf, CONF_xterm_256_colour);
|
gppi(sesskey, "Xterm256Colour", 1, conf, CONF_xterm_256_colour);
|
||||||
i = gppi_raw(sesskey, "BoldAsColour", 0); conf_set_int(conf, CONF_bold_style, i+1);
|
i = gppi_raw(sesskey, "BoldAsColour", 1); conf_set_int(conf, CONF_bold_style, i+1);
|
||||||
|
|
||||||
for (i = 0; i < 22; i++) {
|
for (i = 0; i < 22; i++) {
|
||||||
static const char *const defaults[] = {
|
static const char *const defaults[] = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user