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

Commit

Permalink
[UWP] Fix resource key name PushPinTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarinho committed Mar 23, 2016
1 parent 2411bdd commit 3adea68
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 3adea68

Please sign in to comment.