Should I be able to have viewports inside viewports? Currently it isn’t working, if the viewed component of the inner viewport is bigger then instead of displaying scrollbars, the outer viewport will display scrollbars, as though the outer viewport is sensing it’s own viewed component has become bigger.
I’ll try and describe my hierarchy with pseudo code:
Concertina Panel -> AddPanel(MidiLaneWindow : viewport)
MidiLaneWindow->SetViewedComponent(MidiLane)
MidiLane->AddChildAndMakeVisible(…)
MidiLane->AddChildAndMakeVisible(…)
…
MidiLane->AddChildAndMakeVisible(GridParent : ViewPort)
MidiLaneWindow->SetViewedComponent(MidiGrid)
I want MidiGrid to be able to expand into GridParent but currently all GridParent does is scissor MidiGrid, whereas MidiLaneWindow expands
