From 06ad0c80ec65bc5821b165db2c708995ffe74a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Fri, 19 Feb 2016 17:37:38 +0100 Subject: [PATCH] script: force refresh of scripts buffer after download of scripts list (closes #693) --- ChangeLog.asciidoc | 2 ++ src/plugins/script/script-repo.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ChangeLog.asciidoc b/ChangeLog.asciidoc index 42dc77d84..52369054a 100644 --- a/ChangeLog.asciidoc +++ b/ChangeLog.asciidoc @@ -44,6 +44,8 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes] send PONG on PING received in a websocket frame (issue #675) * relay: fix command "input" received from clients with only spaces in content of message (weechat protocol) (issue #663) +* script: force refresh of scripts buffer after download of scripts list + (issue #693) * xfer: fix DCC file received when the terminal is resized (issue #677, issue #680) diff --git a/src/plugins/script/script-repo.c b/src/plugins/script/script-repo.c index 10f79ed16..c5790a338 100644 --- a/src/plugins/script/script-repo.c +++ b/src/plugins/script/script-repo.c @@ -1448,6 +1448,8 @@ script_repo_file_update_process_cb (void *data, const char *command, if (script_repo_file_read (quiet) && scripts_repo) { + if (script_buffer) + script_buffer_refresh (1); if (!script_action_run ()) script_buffer_refresh (1); }