mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
Code formatting
This commit is contained in:
parent
0a50567b05
commit
b20d2c71d9
1 changed files with 9 additions and 9 deletions
|
|
@ -198,6 +198,14 @@ private void PasswordIterationsTextBox_KeyPress(object sender, KeyPressEventArgs
|
|||
|
||||
|
||||
#region Settings Events
|
||||
private void EncryptionHintLabel_MouseClick(object sender, MouseEventArgs e)
|
||||
{
|
||||
if (e.Button == MouseButtons.Left)
|
||||
{
|
||||
encryptionHintLabel.Visible = false;
|
||||
settings.encryptionHint = false;
|
||||
}
|
||||
}
|
||||
private void EditorFontColor_Click(object sender, EventArgs e)
|
||||
{
|
||||
colorDialog.Color = editorFontColor.BackColor;
|
||||
|
|
@ -627,16 +635,8 @@ private void StatusPanelSizeCheckBox_Click(object sender, EventArgs e)
|
|||
settings.statusPanelSize = statusPanelSizeCheckBox.Checked;
|
||||
main.StatusPanelFileInfo();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private void EncryptionHintLabel_MouseClick(object sender, MouseEventArgs e)
|
||||
{
|
||||
if (e.Button == MouseButtons.Left)
|
||||
{
|
||||
encryptionHintLabel.Visible = false;
|
||||
settings.encryptionHint = false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue