From d4c8a01f717274074866352b1f09b3d4c66d1a30 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 3 Nov 2019 20:31:06 +0200 Subject: [PATCH] Fixed bug with incorrect text in "modified" label --- Crypto Notepad/MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Crypto Notepad/MainForm.cs b/Crypto Notepad/MainForm.cs index 0229516..c5cabdf 100644 --- a/Crypto Notepad/MainForm.cs +++ b/Crypto Notepad/MainForm.cs @@ -1118,7 +1118,7 @@ private void DeleteFileToolStripMenuItem_Click(object sender, EventArgs e) PublicVar.openFileName = ""; Text = PublicVar.appName; StatusPanelTextInfo(); - statusPanelModifiedLabel.Text = "Created"; + statusPanelModifiedLabel.Text = "Modified"; statusPanelSizeLabel.Text = "Size"; statusPanelModifiedLabel.ToolTipText = null; } @@ -1675,7 +1675,7 @@ private void FileLockedPanel_VisibleChanged(object sender, EventArgs e) mainMenu.Enabled = false; richTextBox.Clear(); StatusPanelTextInfo(); - statusPanelModifiedLabel.Text = "Created"; + statusPanelModifiedLabel.Text = "Modified"; statusPanelSizeLabel.Text = "Size"; fileLockedKeyTextBox.Focus(); }