- Timestamp:
- 06/28/12 18:49:22 (13 years ago)
- Location:
- trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/HiveResourceSelector.cs
r8145 r8156 69 69 imageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.MonitorLarge); 70 70 imageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.NetworkCenterLarge); 71 progressView = new ProgressView(this);72 71 } 73 72 … … 78 77 currentProgress = new Progress(); 79 78 currentProgress.Status = "Downloading resources. Please be patient."; 79 if (progressView == null) { 80 progressView = new ProgressView(this); 81 } 80 82 progressView.Progress = currentProgress; 81 83 } -
trunk/sources/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.cs
r8146 r8156 464 464 Invoke(new EventHandler(Content_IsProgressingChanged), sender, e); 465 465 } else { 466 if (Content != null && Content. IsProgressing) {466 if (Content != null && Content.Progress != null && Content.IsProgressing) { 467 467 SetProgressView(); 468 468 } else { 469 FinishProgressView();469 progressView.Progress = null; 470 470 } 471 471 }
Note: See TracChangeset
for help on using the changeset viewer.