Code formatting

This commit is contained in:
Alexander 2020-01-19 14:53:08 +02:00
parent 9e18e19eec
commit d15194f789
No known key found for this signature in database
GPG key ID: 1F83313BFEB322E9
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,6 @@
using System.Linq; using System.Linq;
using System.Net; using System.Net;
using System.Reflection; using System.Reflection;
using System.Runtime.InteropServices;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
@ -626,7 +625,7 @@ public void MenuIcons(bool menuIcons)
aboutMainMenu.Image = Resources.information; aboutMainMenu.Image = Resources.information;
alwaysOnTopMainMenu.Image = Resources.applications_blue; alwaysOnTopMainMenu.Image = Resources.applications_blue;
saveCloseFileMainMenu.Image = Resources.disk_minus; saveCloseFileMainMenu.Image = Resources.disk_minus;
passwordGeneratorMainMenu.Image = Resources.key_plus; passwordGeneratorMainMenu.Image = Resources.key_plus;
} }
else else
{ {
@ -984,6 +983,7 @@ private async void MainWindow_Load(object sender, EventArgs e)
{ {
await CheckForUpdates(false); await CheckForUpdates(false);
} }
} }
private void RichTextBox_SelectionChanged(object sender, EventArgs e) private void RichTextBox_SelectionChanged(object sender, EventArgs e)

View file

@ -295,7 +295,7 @@ private void MenuIconsCheckBox_Click(object sender, EventArgs e)
{ {
MainForm main = Owner as MainForm; MainForm main = Owner as MainForm;
settings.menuIcons = menuIconsCheckBox.Checked; settings.menuIcons = menuIconsCheckBox.Checked;
main.MenuIcons(settings.menuIcons); main.MenuIcons(settings.menuIcons);
} }
private void EditorFontLabel_Click(object sender, EventArgs e) private void EditorFontLabel_Click(object sender, EventArgs e)