mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Fixed bug when file size and modified date does not calculated
This commit is contained in:
parent
a88da63bdf
commit
202486eedf
2 changed files with 3 additions and 1 deletions
|
|
@ -444,7 +444,7 @@ protected internal void StatusPanelFileInfo()
|
|||
}
|
||||
}
|
||||
|
||||
private void StatusPanelTextInfo()
|
||||
protected internal void StatusPanelTextInfo()
|
||||
{
|
||||
if (statusPanel.Visible)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -600,6 +600,7 @@ private void StatusPanelLengthCheckBox_Click(object sender, EventArgs e)
|
|||
MainForm main = Owner as MainForm;
|
||||
main.statusPanelLengthLabel.Visible = statusPanelLengthCheckBox.Checked;
|
||||
settings.statusPanelLength = statusPanelLengthCheckBox.Checked;
|
||||
main.StatusPanelTextInfo();
|
||||
}
|
||||
|
||||
private void StatusPanelLinesCheckBox_Click(object sender, EventArgs e)
|
||||
|
|
@ -607,6 +608,7 @@ private void StatusPanelLinesCheckBox_Click(object sender, EventArgs e)
|
|||
MainForm main = Owner as MainForm;
|
||||
main.statusPanelLinesLabel.Visible = statusPanelLinesCheckBox.Checked;
|
||||
settings.statusPanelLines = statusPanelLinesCheckBox.Checked;
|
||||
main.StatusPanelTextInfo();
|
||||
}
|
||||
|
||||
private void StatusPanelModifiedCheckBox_Click(object sender, EventArgs e)
|
||||
|
|
|
|||
Loading…
Reference in a new issue