Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/15/19 14:52:20 (5 years ago)
Author:
abeham
Message:

#2457: adapted to trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2457_ExpertSystem/HeuristicLab.OptimizationExpertSystem/3.3/Views/KnowledgeCenterViewBase.cs

    r13787 r16958  
    2020#endregion
    2121
     22using System;
    2223using HeuristicLab.Common;
    2324using HeuristicLab.MainForm;
     
    2526using HeuristicLab.Optimization;
    2627using HeuristicLab.OptimizationExpertSystem.Common;
    27 using System;
    2828
    2929namespace HeuristicLab.OptimizationExpertSystem {
     
    146146    private void ContentOnDownloadStarted(object sender, EventArgs<IProgress> e) {
    147147      if (InvokeRequired) { Invoke((Action<object, EventArgs<IProgress>>)ContentOnDownloadStarted, sender, e); return; }
    148       MainForm.AddOperationProgressToView(this, e.Value);
     148      //MainForm.AddOperationProgressToView(this, e.Value);
    149149      e.Value.ProgressStateChanged += ProgressOnStateChanged;
    150150      OnDownloadStarted(e.Value);
Note: See TracChangeset for help on using the changeset viewer.