We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa3f970 + 6c466bb commit 9bbd775Copy full SHA for 9bbd775
src/Uno.Playground.Shared/App.xaml.cs
@@ -118,9 +118,6 @@ protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs e)
118
Console.WriteLine("launched!");
119
SetupAppCenter();
120
121
-#if __WASM__
122
- ApplicationView.GetForCurrentView().Title = "Uno Playground";
123
-#endif
124
#if DEBUG
125
if (System.Diagnostics.Debugger.IsAttached)
126
{
@@ -156,6 +153,10 @@ protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs e)
156
153
Microsoft.UI.Xaml.Window.Current.Content = _rootFrame;
157
154
}
158
155
+#if HAS_UNO
+ Microsoft.UI.Xaml.Window.Current.Title = "Uno Playground";
+#endif
159
+
160
if (e.UWPLaunchActivatedEventArgs.PrelaunchActivated == false)
161
162
if (_rootFrame.Content == null)
0 commit comments