From abf6df5eeb93ea5a0e7446ee6fdab9c1984cc251 Mon Sep 17 00:00:00 2001 From: Daniel Clark Date: Fri, 5 Feb 2021 16:26:25 +0000 Subject: [PATCH] Amended TemplateSettingsProperty --- .../NotificationFlyoutPresenter/NotificationFlyoutPresenter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutPresenter/NotificationFlyoutPresenter.cs b/NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutPresenter/NotificationFlyoutPresenter.cs index aa4d594..611daee 100644 --- a/NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutPresenter/NotificationFlyoutPresenter.cs +++ b/NotificationFlyout.Uwp.UI.Controls/NotificationFlyoutPresenter/NotificationFlyoutPresenter.cs @@ -9,7 +9,7 @@ namespace NotificationFlyout.Uwp.UI.Controls public static readonly DependencyProperty TemplateSettingsProperty = DependencyProperty.Register(nameof(TemplateSettings), typeof(NotificationFlyoutPresenterTemplateSettings), typeof(NotificationFlyoutPresenter), - new PropertyMetadata(0d)); + new PropertyMetadata(null)); private Grid _root; private NotificationFlyoutPresenterTemplateSettings _templateSettings;