Added "Unnamed.cnp - Crypto Notepad" to title bar, when typing text in editor with no opened file

This commit is contained in:
Alexander 2019-11-11 21:00:29 +02:00
parent d11d04db1f
commit 336c6c1a25

View file

@ -986,21 +986,11 @@ private void RichTextBox_TextChanged(object sender, EventArgs e)
if (!Text.Contains("*"))
{
Text = Text.Insert(0, "*");
}
}
else
{
if (Text.Contains("*"))
{
Text = Text.Replace("*", string.Empty);
}
}
if (richTextBox.TextLength == 0)
{
if (Text.Contains("*"))
{
Text = Text.Replace("*", string.Empty);
if (string.IsNullOrEmpty(PublicVar.openFileName) & richTextBox.TextLength > 0)
{
Text = "Unnamed.cnp" + " " + PublicVar.appName;
Text = Text.Insert(0, "*");
}
}
}
}