summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin R. Miller <incanus@codesorcery.net>2015-04-16 15:16:11 -0700
committerJustin R. Miller <incanus@codesorcery.net>2015-04-16 15:16:11 -0700
commitb6e2052962cc2b7fa84ceb71c39383a815416d4f (patch)
treee458442110dd9652508956afaec1b83fe11dc891
parente9f66d043c5117584a7b13f3fb71e3bd6c92004c (diff)
downloadqtlocation-mapboxgl-b6e2052962cc2b7fa84ceb71c39383a815416d4f.tar.gz
refs #1285: don't use special getters for dot syntax
-rw-r--r--platform/ios/MGLMapView.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/MGLMapView.mm b/platform/ios/MGLMapView.mm
index dfd38abf62..5acf04ef79 100644
--- a/platform/ios/MGLMapView.mm
+++ b/platform/ios/MGLMapView.mm
@@ -562,7 +562,7 @@ mbgl::DefaultFileSource *mbglFileSource = nullptr;
// This is the delegate of the GLKView object's display call.
- (void)glkView:(GLKView *)view drawInRect:(CGRect)rect
{
- if ( ! self.glSnapshotView || self.glSnapshotView.isHidden)
+ if ( ! self.glSnapshotView || self.glSnapshotView.hidden)
{
mbglView->resize(rect.size.width, rect.size.height, view.contentScaleFactor, view.drawableWidth, view.drawableHeight);