diff options
author | Jesse Bounds <jesse@rebounds.net> | 2016-12-14 10:22:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-14 10:22:02 -0800 |
commit | 0eac5ea91e5f00807b566508d231f587293a9549 (patch) | |
tree | 347f88618b08b8d7781c5d75cd13e8168437b7dc /platform | |
parent | d34356ce390bc5f995e2c8e29deaa2a6bec17a10 (diff) | |
download | qtlocation-mapboxgl-0eac5ea91e5f00807b566508d231f587293a9549.tar.gz |
[ios]] Remove transaction in callout view update (#7425)
Diffstat (limited to 'platform')
-rw-r--r-- | platform/ios/src/MGLMapView.mm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm index c67105b9e7..14f17dab8c 100644 --- a/platform/ios/src/MGLMapView.mm +++ b/platform/ios/src/MGLMapView.mm @@ -4815,8 +4815,6 @@ public: - (void)updateCalloutView { - [CATransaction begin]; - UIView <MGLCalloutView> *calloutView = self.calloutViewForSelectedAnnotation; id <MGLAnnotation> annotation = calloutView.representedObject; @@ -4839,8 +4837,6 @@ public: calloutView.center = point; } } - - [CATransaction commit]; } - (void)enqueueAnnotationViewForAnnotationContext:(MGLAnnotationContext &)annotationContext |