Changeset 10575 for trunk/sources
- Timestamp:
- 03/12/14 14:37:14 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/MainForms/MainForm.cs
r9905 r10575 436 436 /// </summary> 437 437 public void RemoveOperationProgressFromView(Control control, bool finishProgress = true) { 438 if (InvokeRequired) { 439 Invoke((Action<Control, bool>)RemoveOperationProgressFromView, control, finishProgress); 440 return; 441 } 442 438 443 IProgress progress; 439 444 if (!viewProgressLookup.TryGetValue(control, out progress)) … … 550 555 try { 551 556 ((IActionUserInterfaceItem)item.Tag).Execute(); 552 } 553 catch (Exception ex) { 557 } catch (Exception ex) { 554 558 ErrorHandling.ShowErrorDialog((Control)MainFormManager.MainForm, ex); 555 559 }
Note: See TracChangeset
for help on using the changeset viewer.