diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-03-11 23:44:44 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-03-17 18:52:30 +0100 |
commit | 3b8f9d4547df77e4c85b3b870ba21a67d97b31dc (patch) | |
tree | 32ba646d3d7fa05559bc81e2a0d31288912b74da /src/gui/gui-buffer.c | |
parent | 042968b016721886125944040a0b6432c22a01e6 (diff) | |
download | weechat-3b8f9d4547df77e4c85b3b870ba21a67d97b31dc.zip |
core: check new keys manually added with /set
Diffstat (limited to 'src/gui/gui-buffer.c')
-rw-r--r-- | src/gui/gui-buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index 16d85bb57..ab75c2cce 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -2378,7 +2378,7 @@ gui_buffer_set (struct t_gui_buffer *buffer, const char *property, } else if (strncmp (property, "key_bind_", 9) == 0) { - (void) gui_key_bind (buffer, 0, property + 9, value); + (void) gui_key_bind (buffer, 0, property + 9, value, 0); } else if (strncmp (property, "key_unbind_", 11) == 0) { |