diff --git a/FrostyModManager/Windows/AddProfileWindow.xaml.cs b/FrostyModManager/Windows/AddProfileWindow.xaml.cs
index b4d92ad71..85d6dc793 100644
--- a/FrostyModManager/Windows/AddProfileWindow.xaml.cs
+++ b/FrostyModManager/Windows/AddProfileWindow.xaml.cs
@@ -10,10 +10,12 @@ public partial class AddProfileWindow : FrostyDockableWindow
{
public string ProfileName { get; set; }
- public AddProfileWindow()
+ public AddProfileWindow(string title = "Add Profile")
{
InitializeComponent();
+ this.Title = title;
+
Window mainWin = Application.Current.MainWindow;
if (mainWin != null)
{
diff --git a/FrostyModManager/Windows/MainWindow.xaml b/FrostyModManager/Windows/MainWindow.xaml
index a92bfe4d3..c969e1e2d 100644
--- a/FrostyModManager/Windows/MainWindow.xaml
+++ b/FrostyModManager/Windows/MainWindow.xaml
@@ -92,6 +92,8 @@