Changeset 10641
- Timestamp:
- 03/20/14 13:38:16 (11 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10575
- Property svn:mergeinfo changed
-
stable/HeuristicLab.MainForm.WindowsForms/3.3/MainForms/MainForm.cs
r9933 r10641 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.