From 9c36c4368bdc2ada9efed373c878e47c8104e533 Mon Sep 17 00:00:00 2001
From: Thomas Rasch <thomas@fook.de>
Date: Thu, 21 Jun 2012 13:36:56 +0200
Subject: [PATCH] o Bugfix: Set the position in RMMapLayer for self and not for super, since subclasses might depend on it

---
 MapView/Map/RMMapLayer.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MapView/Map/RMMapLayer.m b/MapView/Map/RMMapLayer.m
index f5987cc..9c739ab 100644
--- a/MapView/Map/RMMapLayer.m
+++ b/MapView/Map/RMMapLayer.m
@@ -66,7 +66,7 @@
 
 - (void)setPosition:(CGPoint)position animated:(BOOL)animated
 {
-    super.position = position;
+    [self setPosition:position];
 }
 
 /// return nil for certain animation keys to block core animation
--
libgit2 0.24.0