From: simon Date: Sun, 22 Apr 2012 14:22:08 +0000 (+0000) Subject: Bug fix from Robert de Bath: if the utf8_override setting is changed X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/5810749af41157e8032f9f502a7117df64757b39 Bug fix from Robert de Bath: if the utf8_override setting is changed in mid-session, it affects translation and hence display, so it should be listed among the settings that require a redraw. git-svn-id: svn://svn.tartarus.org/sgt/putty@9466 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/unix/gtkwin.c b/unix/gtkwin.c index 4b8a8dd8..616a69ad 100644 --- a/unix/gtkwin.c +++ b/unix/gtkwin.c @@ -2989,6 +2989,8 @@ void change_settings_menuitem(GtkMenuItem *item, gpointer data) conf_get_fontspec(newconf, CONF_wideboldfont)->name) || strcmp(conf_get_str(oldconf, CONF_line_codepage), conf_get_str(newconf, CONF_line_codepage)) || + conf_get_int(oldconf, CONF_utf8_override) != + conf_get_int(newconf, CONF_utf8_override) || conf_get_int(oldconf, CONF_vtmode) != conf_get_int(newconf, CONF_vtmode) || conf_get_int(oldconf, CONF_shadowbold) !=