Skip to content

Commit

Permalink
Merge pull request #13 from tilemapjp/for_issue12
Browse files Browse the repository at this point in the history
Fix issue12
  • Loading branch information
amay077 authored Jun 26, 2016
2 parents 9152545 + 794f2d1 commit b1cea53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ void UpdateSelectedPin(Pin pin)
Marker targetMarker = null;
foreach (var marker in _markers)
{
if ((string)pin.Id != marker.Id)
if (((Marker)pin.Id).Id != marker.Id)
continue;

targetMarker = marker;
Expand Down

0 comments on commit b1cea53

Please sign in to comment.