Browse Source

MPE: added missing call to MPEZoneLayout listeners if the layout is changed by its assignment operator.

tags/2021-05-28
Timur Doumler 9 years ago
parent
commit
067c78dbdb
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp

+ 1
- 0
modules/juce_audio_basics/mpe/juce_MPEZoneLayout.cpp View File

@@ -34,6 +34,7 @@ MPEZoneLayout::MPEZoneLayout (const MPEZoneLayout& other)
MPEZoneLayout& MPEZoneLayout::operator= (const MPEZoneLayout& other)
{
zones = other.zones;
listeners.call (&MPEZoneLayout::Listener::zoneLayoutChanged, *this);
return *this;
}


Loading…
Cancel
Save