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 = "";
|
PublicVar.openFileName = "";
|
||||||
Text = PublicVar.appName;
|
Text = PublicVar.appName;
|
||||||
StatusPanelTextInfo();
|
StatusPanelTextInfo();
|
||||||
statusPanelModifiedLabel.Text = "Created";
|
statusPanelModifiedLabel.Text = "Modified";
|
||||||
statusPanelSizeLabel.Text = "Size";
|
statusPanelSizeLabel.Text = "Size";
|
||||||
statusPanelModifiedLabel.ToolTipText = null;
|
statusPanelModifiedLabel.ToolTipText = null;
|
||||||
}
|
}
|
||||||
|
|
@ -1675,7 +1675,7 @@ private void FileLockedPanel_VisibleChanged(object sender, EventArgs e)
|
||||||
mainMenu.Enabled = false;
|
mainMenu.Enabled = false;
|
||||||
richTextBox.Clear();
|
richTextBox.Clear();
|
||||||
StatusPanelTextInfo();
|
StatusPanelTextInfo();
|
||||||
statusPanelModifiedLabel.Text = "Created";
|
statusPanelModifiedLabel.Text = "Modified";
|
||||||
statusPanelSizeLabel.Text = "Size";
|
statusPanelSizeLabel.Text = "Size";
|
||||||
fileLockedKeyTextBox.Focus();
|
fileLockedKeyTextBox.Focus();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue