From dd91891117f79d52ea45898349b698db21a71785 Mon Sep 17 00:00:00 2001 From: jmkiley Date: Tue, 11 Dec 2018 13:28:47 -0800 Subject: [darwin] move turnstile event for snapshotter --- platform/darwin/src/MGLMapSnapshotter.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/darwin/src/MGLMapSnapshotter.mm b/platform/darwin/src/MGLMapSnapshotter.mm index 985947c0d5..afcfc91109 100644 --- a/platform/darwin/src/MGLMapSnapshotter.mm +++ b/platform/darwin/src/MGLMapSnapshotter.mm @@ -77,9 +77,6 @@ const CGFloat MGLSnapshotterMinimumPixelSize = 64; _latLngForFn = std::move(latLngForFn); _scale = scale; _image = image; -#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR - [MGLMapboxEvents pushTurnstileEvent]; -#endif } return self; } @@ -161,6 +158,9 @@ const CGFloat MGLSnapshotterMinimumPixelSize = 64; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillTerminate:) name:UIApplicationWillTerminateNotification object:nil]; #else [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationWillTerminate:) name:NSApplicationWillTerminateNotification object:nil]; +#endif +#if TARGET_OS_IPHONE || TARGET_OS_SIMULATOR + [MGLMapboxEvents pushTurnstileEvent]; #endif } return self; -- cgit v1.2.1