Skip to content

Commit

Permalink
fix(macos): fix blend mode
Browse files Browse the repository at this point in the history
  • Loading branch information
hansemannn committed Sep 13, 2023
1 parent ed944dc commit c72c430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Classes/TiMapCircleProxy.m
Expand Up @@ -52,7 +52,7 @@ - (MKCircleRenderer *)circleRenderer
circleRenderer = [[[MKCircleRenderer alloc] initWithCircle:[MKCircle circleWithCenterCoordinate:center radius:radius]] retain];
[circleRenderer setFillColor:fillColor ? [fillColor color] : [UIColor blackColor]];

#if IS_SDK_IOS_16
#if IS_SDK_IOS_16 && !TARGET_OS_MACCATALYST
if ([TiUtils isIOSVersionOrGreater:@"16.0"] && blendMode > 0) {
circleRenderer.blendMode = blendMode;
}
Expand Down

0 comments on commit c72c430

Please sign in to comment.