Authored by Thomas Rasch

o RMCircle: Update the circle CGPath after every position update

@@ -150,4 +150,11 @@ @@ -150,4 +150,11 @@
150 [self updateCirclePath]; 150 [self updateCirclePath];
151 } 151 }
152 152
  153 +- (void)setPosition:(CGPoint)position
  154 +{
  155 + [super setPosition:position];
  156 +
  157 + [self updateCirclePath];
  158 +}
  159 +
153 @end 160 @end