diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-07-08 14:46:33 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-07-08 14:46:33 +0200 |
commit | 6532c9a5387506b5e25a937c7c01b881462b3df0 (patch) | |
tree | db11d32ab2da6be1970ed50dc4e92f3e4e3d3f10 /src/plugins/fifo | |
parent | f1cd765e1ac6dba61c871a4a4c38896bdc392443 (diff) | |
download | weechat-6532c9a5387506b5e25a937c7c01b881462b3df0.zip |
fset: fix priority of plugin (load it after all other plugins)
This fixes a refresh problem of options after /upgrade in fset buffer.
Diffstat (limited to 'src/plugins/fifo')
-rw-r--r-- | src/plugins/fifo/fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/fifo/fifo.c b/src/plugins/fifo/fifo.c index 44c0eeac8..c2f9498dc 100644 --- a/src/plugins/fifo/fifo.c +++ b/src/plugins/fifo/fifo.c @@ -42,7 +42,7 @@ WEECHAT_PLUGIN_DESCRIPTION(N_("FIFO pipe for remote control")); WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu <flashcode@flashtux.org>"); WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION); WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE); -WEECHAT_PLUGIN_PRIORITY(7000); +WEECHAT_PLUGIN_PRIORITY(8000); struct t_weechat_plugin *weechat_fifo_plugin = NULL; #define weechat_plugin weechat_fifo_plugin |