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

Workaround for some OSX10.11 repaint region coalescing problems

This commit is contained in:
jules 2016-02-23 10:01:57 +00:00
parent 70a3db1cb1
commit 5d23645ca2
2 changed files with 9 additions and 13 deletions

View file

@ -524,7 +524,7 @@ public:
*/
void consolidate()
{
for (int i = 0; i < getNumRectangles() - 1; ++i)
for (int i = 0; i < rects.size() - 1; ++i)
{
RectangleType& r = rects.getReference (i);
const ValueType rx1 = r.getX();