diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-01 20:53:17 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-25 16:35:27 +0200 |
commit | b2373ffba7bbc13cc6eb2f365ec5badb6ff74d1a (patch) | |
tree | efe4fb52c43565f2d88dde62e9978e929c9e1d76 /src/plugins/fset/fset-mouse.c | |
parent | 2671a72da3c94684bd458c83aa314d0816a79113 (diff) | |
download | weechat-b2373ffba7bbc13cc6eb2f365ec5badb6ff74d1a.zip |
fset: add mark on options to run an action on multiple options
Diffstat (limited to 'src/plugins/fset/fset-mouse.c')
-rw-r--r-- | src/plugins/fset/fset-mouse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/fset/fset-mouse.c b/src/plugins/fset/fset-mouse.c index 9791859b2..2e81dac1a 100644 --- a/src/plugins/fset/fset-mouse.c +++ b/src/plugins/fset/fset-mouse.c @@ -92,6 +92,7 @@ fset_focus_cb (const void *pointer, void *data, struct t_hashtable *info) weechat_hashtable_set (info, "fset_option_max", ptr_fset_option->max); weechat_hashtable_set (info, "fset_option_description", ptr_fset_option->description); weechat_hashtable_set (info, "fset_option_string_values", ptr_fset_option->string_values); + weechat_hashtable_set (info, "fset_option_marked", (ptr_fset_option->marked) ? "1" : "0"); return info; } |