Skip to content

Commit

Permalink
Merge pull request #344 from paulshen/paulshen-patch-1
Browse files Browse the repository at this point in the history
Fix shouldUsePinView
  • Loading branch information
lelandrichardson committed Jul 9, 2016
2 parents c18eace + 4e177f5 commit 6470fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/AirMaps/AIRMapMarker.m
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ - (BOOL)shouldShowCalloutView

- (BOOL)shouldUsePinView
{
return self.subviews.count == 0 && !self.imageSrc;
return self.reactSubviews.count == 0 && !self.imageSrc;
}

- (void)setImageSrc:(NSString *)imageSrc
Expand Down

0 comments on commit 6470fe3

Please sign in to comment.