From 3a6171428aa790dcbdd1f670e61c33584f2f6f5b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 5 Mar 2024 00:56:42 +0100 Subject: [PATCH] Do not include hidden plugin in plugin-list --- share/scripts/list_plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/scripts/list_plugins.lua b/share/scripts/list_plugins.lua index 96c6c11634..b83263d81d 100644 --- a/share/scripts/list_plugins.lua +++ b/share/scripts/list_plugins.lua @@ -19,7 +19,7 @@ function factory () return function () local id = pi:type() .. "-" .. pp:unique_id() local cnt = 0 local rns = {} - if pi:is_channelstrip () then goto nextproc end + if pi:is_channelstrip () or not pi:display_to_user () then goto nextproc end if all_plugs[id] then cnt = all_plugs[id]['cnt'] rns = all_plugs[id]['rns']