diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ce53e178..9ca768d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ ### Fixed - irc, xfer: fix display of input prompt in IRC private buffers and DCC chat buffers ([#2128](https://github.com/weechat/weechat/issues/2128)) +- core: apply buffer properties (options weechat.buffer.*) when a buffer name is changed - irc: fix property "short_name" of channel buffer when the joined channel has a different case than the `/join` command - irc: close /list buffer when the server buffer is closed ([#2121](https://github.com/weechat/weechat/issues/2121)) - irc: clear /list buffer when disconnecting from server ([#2133](https://github.com/weechat/weechat/issues/2133)) diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index e94c396b6..70203bfce 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -1680,6 +1680,9 @@ gui_buffer_set_name (struct t_gui_buffer *buffer, const char *name) free (buffer->old_full_name); buffer->old_full_name = NULL; } + + /* apply properties (from options weechat.buffer.*) */ + gui_buffer_apply_config_properties (buffer); } /*