mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed bug with incorrect text in "modified" label
This commit is contained in:
parent
d20b72f1eb
commit
d4c8a01f71
1 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue