Browse Source

Fixed an issue adding two RectangleLists

tags/2021-05-28
Tom Poole 7 years ago
parent
commit
b25c14535a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_graphics/geometry/juce_RectangleList.h

+ 1
- 1
modules/juce_graphics/geometry/juce_RectangleList.h 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.


Loading…
Cancel
Save