Widow

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 11  →  ?path2? @ 9
/trunk/Widow/MainForm.cs
@@ -109,11 +109,6 @@
 
private void NewToolStripMenuItem_Click(object sender, EventArgs e)
{
if (RuleEditForm != null)
{
return;
}
 
RuleEditForm = new RuleEditForm(this, Windows);
RuleEditForm.Closed += RuleEditForm_Closed;
RuleEditForm.Show();
@@ -160,9 +155,9 @@
AboutForm.Show();
}
 
private async void ApplyNowToolStripMenuItem_Click(object sender, EventArgs e)
private void ApplyNowToolStripMenuItem_Click(object sender, EventArgs e)
{
await WindowManipulation.Apply();
WindowManipulation.Apply();
}
 
private void OnEveryToolStripMenuItem_CheckedChanged(object sender, EventArgs e)
@@ -199,22 +194,5 @@
}
 
#endregion
 
private void NotifyIcon1_DoubleClick(object sender, EventArgs e)
{
if (RuleEditForm != null)
{
return;
}
 
RuleEditForm = new RuleEditForm(this, Windows);
RuleEditForm.Closed += RuleEditForm_Closed;
RuleEditForm.Show();
}
 
private async void NotifyIcon1_Click(object sender, EventArgs e)
{
await WindowManipulation.Apply();
}
}
}