From 241e9dce6f563c103d83ea4e9cd72ac008df400a Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sat, 19 Sep 2009 11:14:08 +0200 Subject: [PATCH] Fix terminal title bug: do not reset it when option weechat.look.set_title is off (bug #27399) --- ChangeLog | 4 +++- src/core/wee-config.c | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2e0039352..5c8f07fd9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,14 @@ WeeChat ChangeLog ================= FlashCode -v0.3.1-dev, 2009-09-18 +v0.3.1-dev, 2009-09-19 Version 0.3.1 (under dev!) -------------------------- +* core: fix terminal title bug: do not reset it when option + weechat.look.set_title is off (bug #27399) * alias: fix bug with arguments (bug #27440) * irc: add options for CTCP, to block/customize CTCP reply (task #9693) * irc: add missing CTCP: clientinfo, finger, source, time, userinfo (task #7270) diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 54966fe22..bcb46d83b 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -222,8 +222,6 @@ config_change_title (void *data, struct t_config_option *option) if (CONFIG_BOOLEAN(config_look_set_title)) gui_window_set_title (PACKAGE_NAME " " PACKAGE_VERSION); - else - gui_window_set_title (NULL); } /*