Code formatting

This commit is contained in:
Alexander 2019-11-19 15:57:30 +02:00
parent 0a50567b05
commit b20d2c71d9

View file

@ -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;
}
}
}
}