diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2015-12-16 12:36:06 -0800 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-12-16 16:15:28 -0800 |
commit | bf89ed080b9240af75512704225b56cccf7c6828 (patch) | |
tree | 462c009e10b6b26665edf91d47e429e33c407c1a /platform/ios | |
parent | 2ee52915fe4d2889ddac217678d40dca9beae176 (diff) | |
download | qtlocation-mapboxgl-bf89ed080b9240af75512704225b56cccf7c6828.tar.gz |
[ios] Renamed custom style layer invalidation method
Cf. -[UIView setNeedsDisplay] and -[MKOverlayRenderer setNeedsDisplay].
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/MGLMapView.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/MGLMapView.mm b/platform/ios/MGLMapView.mm index ab18c1b4c7..63bd41e7d6 100644 --- a/platform/ios/MGLMapView.mm +++ b/platform/ios/MGLMapView.mm @@ -3675,7 +3675,7 @@ void MGLFinishCustomStyleLayer(void *context) context, otherIdentifier.UTF8String); } -- (void)invalidateCustomStyleLayers +- (void)setCustomStyleLayersNeedDisplay { _mbglMap->update(mbgl::Update::Repaint); } |