Widow – Diff between revs 11 and 13

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 11 Rev 13
Line 179... Line 179...
179   179  
180 WindowManipulation.ApplyEveryTime = time; 180 WindowManipulation.ApplyEveryTime = time;
181 WindowManipulation.ApplyEveryTimeEnabled = toolStripMenuItem.Checked; 181 WindowManipulation.ApplyEveryTimeEnabled = toolStripMenuItem.Checked;
Line -... Line 182...
-   182 }
-   183  
-   184 private void NotifyIcon1_DoubleClick(object sender, EventArgs e)
-   185 {
-   186 if (RuleEditForm != null)
-   187 {
-   188 return;
-   189 }
-   190  
-   191 RuleEditForm = new RuleEditForm(this, Windows);
-   192 RuleEditForm.Closed += RuleEditForm_Closed;
-   193 RuleEditForm.Show();
-   194 }
-   195  
-   196 private async void NotifyIcon1_Click(object sender, EventArgs e)
-   197 {
-   198 await WindowManipulation.Apply();
182 } 199 }
Line 183... Line 200...
183   200  
Line 184... Line 201...
184 #endregion 201 #endregion
Line 197... Line 214...
197 break; 214 break;
198 } 215 }
199 } 216 }
Line 200... Line 217...
200   217  
201 #endregion -  
202   -  
203 private void NotifyIcon1_DoubleClick(object sender, EventArgs e) -  
204 { -  
205 if (RuleEditForm != null) -  
206 { -  
207 return; -  
208 } -  
209   -  
210 RuleEditForm = new RuleEditForm(this, Windows); -  
211 RuleEditForm.Closed += RuleEditForm_Closed; -  
212 RuleEditForm.Show(); -  
213 } -  
214   -  
215 private async void NotifyIcon1_Click(object sender, EventArgs e) -  
216 { -  
217 await WindowManipulation.Apply(); -  
218 } 218 #endregion
219 } 219 }
220 } 220 }