Skip to content

Commit ba41e49

Browse files
Invert NavigationPage UseMauiHandler flag (#31859)
1 parent 3d3f594 commit ba41e49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Controls/src/Core/NavigationPage/NavigationPage.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ public partial class NavigationPage : Page, IPageContainer<Page>, IBarElement, I
5656

5757
partial void Init();
5858

59-
#if WINDOWS || ANDROID || TIZEN
60-
const bool UseMauiHandler = true;
61-
#else
59+
#if IOS || MACCATALYST
6260
const bool UseMauiHandler = false;
61+
#else
62+
const bool UseMauiHandler = true;
6363
#endif
6464

6565
bool _setForMaui;

0 commit comments

Comments
 (0)