Changeset 15374
- Timestamp:
- 09/19/17 18:13:07 (7 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 15312
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimization.Views merged: 15312
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization.Views/3.3/ResultCollectionView.cs
r14186 r15374 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.