1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed an issue adding two RectangleLists

This commit is contained in:
Tom Poole 2018-10-12 09:25:28 +01:00
parent 9dda1432df
commit b25c14535a

View file

@ -194,7 +194,7 @@ public:
void add (const RectangleList& other)
{
for (auto& r : other)
add (*r);
add (r);
}
/** Removes a rectangular region from the list.