diff --git a/Crypto Notepad/MainForm.cs b/Crypto Notepad/MainForm.cs index d1ac008..1269e0d 100644 --- a/Crypto Notepad/MainForm.cs +++ b/Crypto Notepad/MainForm.cs @@ -1193,7 +1193,7 @@ private async void SaveAsMainMenu_Click(object sender, EventArgs e) toolbarPanel.Enabled = true; richTextBox.ReadOnly = false; richTextBox.Modified = false; - Text = PublicVar.appName + " – " + Path.GetFileName(filePath); + Text = Path.GetFileName(filePath) + " – " + PublicVar.appName; PublicVar.encryptionKey.Set(TypedPassword.Value); TypedPassword.Value = null; PublicVar.openFileName = Path.GetFileName(saveFileDialog.FileName);