1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 20:12:48 -05:00

Implement `default-colours' on Windows based loosely on Michael Wardle's patch.

[originally from svn r3444]
This commit is contained in:
Jacob Nevins
2003-09-03 20:14:38 +00:00
parent dbe68abfff
commit 95d5a91c24
6 changed files with 54 additions and 1 deletions

View File

@ -271,6 +271,10 @@ void win_setup_config_box(struct controlbox *b, HWND *hwndp, int has_help,
ctrl_checkbox(s, "Attempt to use logical palettes", 'l',
HELPCTX(colours_logpal),
dlg_stdcheckbox_handler, I(offsetof(Config,try_palette)));
ctrl_checkbox(s, "Use system colours", 's',
HELPCTX(colours_system),
dlg_stdcheckbox_handler, I(offsetof(Config,system_colour)));
/*
* Resize-by-changing-font is a Windows insanity.