Skip to content

Commit

Permalink
multiplex fix list linking and ui crash
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuper committed Oct 7, 2024
1 parent 4b5583b commit af76af2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/Common/ParameterLink/ParameterLink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ String ParameterLink::getReplacementString(int multiplexIndex)
{
result += lp->stringValue();
}
}else
{
result += lp->stringValue();
}
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ void BaseMultiplexListEditor::buttonClicked(Button* b)

p.showMenuAsync(PopupMenu::Options(), [this](int result)
{
if (result == 0) return;

switch (result)
{
case 1:
Expand Down

0 comments on commit af76af2

Please sign in to comment.