1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-26 09:42:25 +00:00

Fix bug with setting window title on Unix that came in with r9214.

[originally from svn r9268]
[r9214 == a1f3b7a358]
This commit is contained in:
Jacob Nevins 2011-08-19 14:55:24 +00:00
parent 20f508e034
commit e35feee639

View File

@ -2968,7 +2968,7 @@ void change_settings_menuitem(GtkMenuItem *item, gpointer data)
*/ */
if (strcmp(conf_get_str(oldconf, CONF_wintitle), if (strcmp(conf_get_str(oldconf, CONF_wintitle),
conf_get_str(newconf, CONF_wintitle))) conf_get_str(newconf, CONF_wintitle)))
set_title(inst, conf_get_str(oldconf, CONF_wintitle)); set_title(inst, conf_get_str(newconf, CONF_wintitle));
set_window_titles(inst); set_window_titles(inst);
/* /*