Fix compilation error in CI

This commit is contained in:
Gregory John Casamento 2022-09-20 07:29:53 -04:00
parent 2bec53bf0f
commit 01ca2cb6c2

View file

@ -455,7 +455,7 @@ static NSString *placeholderItem = nil;
[item setSelected: NO];
}
}
END_FOR_IN(indexPaths);
END_FOR_IN(_visibleItems);
// Now select all that are selected
FOR_IN(NSIndexPath*, p, indexPaths)
@ -1429,6 +1429,12 @@ static NSString *placeholderItem = nil;
if (attr != nil)
{
NSRect f = [attr frame];
// Expand the target area so it is easier to hit...
// f.origin.x -= 10.0;
// f.origin.y -= 10.0;
// f.size.width += 20.0;
// f.size.height += 20.0;
if (NSPointInRect(point, f))
{