Skip to content

Commit

Permalink
Fixed selecting plugins from fx loop and output chain in mobile inter…
Browse files Browse the repository at this point in the history
…face
  • Loading branch information
mikeoliphant committed Jul 12, 2024
1 parent d1267ed commit 7085da9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions StompboxShared/Interface/MobileInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,15 @@ public MobileInterface()
vStack.Children.Add(fxLoopDisplay = new PluginChainDisplay("FxLoop", miniMode: true)
{
HorizontalAlignment = EHorizontalAlignment.Center,
DesiredHeight = plugHeight
DesiredHeight = plugHeight,
PluginClickAction = PluginClicked
});

vStack.Children.Add(outputChainDisplay = new PluginChainDisplay("Output", miniMode: true)
{
HorizontalAlignment = EHorizontalAlignment.Center,
DesiredHeight = plugHeight
DesiredHeight = plugHeight,
PluginClickAction = PluginClicked
});

selectedPluginDock = new Dock();
Expand Down

0 comments on commit 7085da9

Please sign in to comment.