From dc0a7477cdc46bfd2315cd9d90e93fc9370f536f Mon Sep 17 00:00:00 2001 From: SpacePhil <52743038+PhilBu96@users.noreply.github.com> Date: Tue, 5 May 2026 23:02:30 +0200 Subject: [PATCH] Set window title to 'Audibly' in MainWindow.xaml Updated MainWindow.xaml to explicitly set the window title. Currently, the application displays "WinUI Desktop" in the taskbar instead of the actual app name. Adding the Title attribute ensures that "Audibly" is correctly displayed when the app is running. --- Audibly.App/MainWindow.xaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Audibly.App/MainWindow.xaml b/Audibly.App/MainWindow.xaml index e42a74a..51d9461 100644 --- a/Audibly.App/MainWindow.xaml +++ b/Audibly.App/MainWindow.xaml @@ -6,4 +6,5 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - mc:Ignorable="d" /> \ No newline at end of file + mc:Ignorable="d" /> + Title="Audibly" />