From: simon Date: Sat, 15 Mar 2003 09:42:15 +0000 (+0000) Subject: Missed a couple of the Unix-specific settings out of settings.c. One X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/be5c5fed6ddb65f5e0443bc893ec83c858f87558 Missed a couple of the Unix-specific settings out of settings.c. One of these days I'll have to separate the platform-specific settings out into winsett and uxsett modules, but for now it's not too urgent. git-svn-id: svn://svn.tartarus.org/sgt/putty@2936 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/settings.c b/settings.c index c6700a03..c3f8c883 100644 --- a/settings.c +++ b/settings.c @@ -624,6 +624,8 @@ void load_open_settings(void *sesskey, int do_host, Config *cfg) gppi(sesskey, "LoginShell", 1, &cfg->login_shell); gppi(sesskey, "ScrollbarOnLeft", 0, &cfg->scrollbar_on_left); gppfont(sesskey, "BoldFont", &cfg->boldfont); + gppfont(sesskey, "WideFont", &cfg->widefont); + gppfont(sesskey, "WideBoldFont", &cfg->wideboldfont); gppi(sesskey, "ShadowBoldOffset", 1, &cfg->shadowboldoffset); }