1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

script: always display list of scripts when searching scripts with /script search (issue #2077)

This commit is contained in:
Sébastien Helleu
2024-02-21 21:36:52 +01:00
parent 134b639782
commit 32c66a10a5
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@ For a list of important changes that require manual actions, please look at rele
Bug fixes::
* script: always display list of scripts when searching scripts with `/script search` (issue #2077)
* script: fix default mouse keys (issue #2076)
* trigger: fix memory leak when adding a new trigger with `/trigger` command
+5
View File
@@ -1371,6 +1371,11 @@ script_action_run_all ()
script_buffer_open ();
script_buffer_refresh (1);
}
if (script_buffer_detail_script)
{
/* back to list of scripts */
script_buffer_show_detail_script (NULL);
}
weechat_buffer_set (script_buffer, "display", "1");
}
else if (weechat_strcmp (argv[0], "list") == 0)