mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Do not include hidden plugin in plugin-list
This commit is contained in:
parent
bf7d4f895e
commit
3a6171428a
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ function factory () return function ()
|
||||||
local id = pi:type() .. "-" .. pp:unique_id()
|
local id = pi:type() .. "-" .. pp:unique_id()
|
||||||
local cnt = 0
|
local cnt = 0
|
||||||
local rns = {}
|
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
|
if all_plugs[id] then
|
||||||
cnt = all_plugs[id]['cnt']
|
cnt = all_plugs[id]['cnt']
|
||||||
rns = all_plugs[id]['rns']
|
rns = all_plugs[id]['rns']
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue