Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6 from xamarin/fix-uwpmapspin
Browse files Browse the repository at this point in the history
[UWP] Fix resource key name PushPinTemplate
  • Loading branch information
Jason Smith committed Mar 23, 2016
2 parents 5c63c8c + 3adea68 commit 2cb7e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Xamarin.Forms.Maps.UWP/PushPin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ internal PushPin(Pin pin)
if (pin == null)
throw new ArgumentNullException();

ContentTemplate = Windows.UI.Xaml.Application.Current.Resources["pushPinTemplate"] as Windows.UI.Xaml.DataTemplate;
ContentTemplate = Windows.UI.Xaml.Application.Current.Resources["PushPinTemplate"] as Windows.UI.Xaml.DataTemplate;
DataContext = Content = _pin = pin;

UpdateLocation();
Expand Down

0 comments on commit 2cb7e53

Please sign in to comment.