Widow

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 12  →  ?path2? @ 13
/trunk/Widow/MainForm.cs
@@ -181,6 +181,23 @@
WindowManipulation.ApplyEveryTimeEnabled = toolStripMenuItem.Checked;
}
 
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();
}
 
#endregion
 
#region Private Methods
@@ -199,22 +216,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();
}
}
}