mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Prevent endless recursion on Evoral::Event<>
This commit is contained in:
parent
ed5a46d214
commit
a2166a28de
1 changed files with 1 additions and 0 deletions
|
|
@ -552,6 +552,7 @@ function traverse_parent ($ns, &$inherited) {
|
|||
asort ($parents);
|
||||
foreach ($parents as $p) {
|
||||
if (!empty ($rv)) { $rv .= ', '; }
|
||||
if ($p == $ns) { continue; }
|
||||
$rv .= typelink ($p);
|
||||
$inherited[$p] = $classlist[$p];
|
||||
traverse_parent ($p, $inherited);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue