1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

core: apply buffer properties (options weechat.buffer.*) when a buffer name is changed

This commit is contained in:
Sébastien Helleu
2024-06-19 21:42:38 +02:00
parent 7cd8312bf9
commit 0d8e3a48ee
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -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))
+3
View File
@@ -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);
}
/*