summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2015-11-09 13:08:11 -0800
committerMinh Nguyễn <mxn@1ec5.org>2015-11-09 13:08:11 -0800
commit2abdcb0a81b426588ec2c21b9ea7dcabaab04b2f (patch)
treefa69813c2fb7e1ef69cd7d792611990641ae299a
parentaffb1199bf885a52f705369b67f008271567f2d8 (diff)
downloadqtlocation-mapboxgl-2abdcb0a81b426588ec2c21b9ea7dcabaab04b2f.tar.gz
Updated changelog
-rw-r--r--CHANGELOG.md1
-rw-r--r--platform/ios/MGLMapView.mm4
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 942d4b3908..391692e752 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -33,6 +33,7 @@ Known issues:
- Fixed an issue that prevented zoom level–dependent style properties from updating after zooming programmatically with animation. ([#2951](https://github.com/mapbox/mapbox-gl-native/pull/2951))
- Fixed a rendering issue with styles that use the `background-pattern` property. ([#2531](https://github.com/mapbox/mapbox-gl-native/pull/2531))
- Fixed a crash when reusing a single `MGLMapView` across multiple `UIViewController`s. ([#2969](https://github.com/mapbox/mapbox-gl-native/pull/2969))
+- Eliminated flickering when opening and closing an overlay, such as an alert or action sheet. ([#2309](https://github.com/mapbox/mapbox-gl-native/pull/2309))
- Labels can now line wrap on hyphens and other punctuation. ([#2598](https://github.com/mapbox/mapbox-gl-native/pull/2598))
- A new delegate callback was added for observing taps to annotation callout views. ([#2596](https://github.com/mapbox/mapbox-gl-native/pull/2596))
- `-mapViewRegionIsChanging:` is now sent to the map view’s delegate during gestures. ([#2700](https://github.com/mapbox/mapbox-gl-native/pull/2700))
diff --git a/platform/ios/MGLMapView.mm b/platform/ios/MGLMapView.mm
index 43721896f2..1d44ee1953 100644
--- a/platform/ios/MGLMapView.mm
+++ b/platform/ios/MGLMapView.mm
@@ -426,8 +426,8 @@ std::chrono::steady_clock::duration secondsAsDuration(float duration)
MGLReachability *reachability = [notification object];
if ( ! _isWaitingForRedundantReachableNotification && [reachability isReachable])
{
- mbgl::NetworkStatus::Reachable();
- }
+ mbgl::NetworkStatus::Reachable();
+ }
_isWaitingForRedundantReachableNotification = NO;
}