- Timestamp:
- 10/17/19 10:01:44 (5 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
/trunk merged: 17242,17255,17267-17268,17272-17274,17276,17278,17301-17302,17305-17306,17316,17329
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Clients.Hive.JobManager
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Clients.Hive.JobManager merged: 17267
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveJobManagerView.cs
r17226 r17333 144 144 if (Content != null && Content.Jobs != null) { 145 145 // clear hive client only if it is not displayed by any other content view (i.e. job manager) 146 var contentViews = MainFormManager.MainForm.Views.OfType<IContentView>(); 147 if (contentViews.All(x => x.Content != Content || x == this)) 146 var contentViews = MainFormManager.MainForm.Views.OfType<IContentView>() 147 .Where(v => v.Content == Content && v != this); 148 if (!contentViews.Any()) 148 149 Content.ClearHiveClient(); 149 150
Note: See TracChangeset
for help on using the changeset viewer.