Merge pull request #1225 from weechatter/partial_completion

gui: fix uncleared completion item (#1162)
This commit is contained in:
Sébastien Helleu 2018-07-27 07:51:36 +02:00 committed by GitHub
commit a14973816b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1199,6 +1199,8 @@ gui_completion_complete (struct t_gui_completion *completion)
} }
arraylist_clear (completion->partial_list); arraylist_clear (completion->partial_list);
(void) hook_signal_send ("partial_completion",
WEECHAT_HOOK_SIGNAL_STRING, NULL);
return; return;
} }