Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/02/12 23:12:55 (12 years ago)
Author:
ascheibe
Message:

#1762 fixed activation/deactivation of progress view

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Hive.Views/3.3/HiveTasks/OptimizerHiveTaskView.cs

    r8181 r8186  
    4646      InitializeComponent();
    4747      progress = new Progress() {
    48         CanBeCanceled = false
     48        CanBeCanceled = false,
     49        ProgressState = ProgressState.Finished
    4950      };
    5051    }
     
    110111      progress.ProgressState = ProgressState.Started;
    111112      Content.Pause();
     113      progress.Finish();
    112114    }
    113115
     
    116118      progress.ProgressState = ProgressState.Started;
    117119      Content.Stop();
     120      progress.Finish();
    118121    }
    119122
     
    122125      progress.ProgressState = ProgressState.Started;
    123126      Content.Restart();
     127      progress.Finish();
    124128    }
    125129
Note: See TracChangeset for help on using the changeset viewer.