This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fixed an issue adding two RectangleLists
tags/2021-05-28
Tom Poole
7 years ago
parent
9dda1432df
commit
b25c14535a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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.
Write
Preview
Loading…
Cancel
Save