Changeset 15312 for trunk/sources
- Timestamp:
- 08/07/17 14:46:28 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/ResultCollectionView.cs
r14185 r15312 21 21 22 22 using System; 23 using System.Windows.Forms; 23 24 using HeuristicLab.Core; 24 25 using HeuristicLab.Core.Views; … … 58 59 } 59 60 } 61 62 protected override void Item_ToStringChanged(object sender, EventArgs e) { 63 if (InvokeRequired) { 64 Invoke(new EventHandler(Item_ToStringChanged), sender, e); 65 return; 66 } 67 68 base.Item_ToStringChanged(sender, e); 69 Application.DoEvents(); 70 } 60 71 } 61 72 }
Note: See TracChangeset
for help on using the changeset viewer.