1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

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

This commit is contained in:
Timur Doumler 2016-03-08 10:10:52 +00:00
parent 228e4b732c
commit 067c78dbdb

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;
}