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

Commit

Permalink
Fix issue detecting Flyout property changes in UWP (#14249)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuarezruiz authored Jul 11, 2022
1 parent 875e9cd commit bd38b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Xamarin.Forms.Platform.UAP/FlyoutPageRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ protected virtual void OnElementPropertyChanged(object sender, PropertyChangedEv
{
if (e.PropertyName == FlyoutPage.IsPresentedProperty.PropertyName || e.PropertyName == FlyoutPage.FlyoutLayoutBehaviorProperty.PropertyName)
UpdateIsPresented();
else if (e.PropertyName == "Master")
else if (e.PropertyName == "Flyout")
UpdateMaster();
else if (e.PropertyName == "Detail")
UpdateDetail();
Expand Down

0 comments on commit bd38b07

Please sign in to comment.