Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/08/12 12:17:54 (11 years ago)
Author:
sforsten
Message:

#1292: renamed some controls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/AbstractFeatureCorrelationView.cs

    r8880 r8881  
    118118
    119119    protected void Content_ProgressCalculation(object sender, ProgressChangedEventArgs e) {
    120       if (!calculatingPanel.Visible && e.ProgressPercentage != heatMapProgressBar.Maximum) {
    121         calculatingPanel.Show();
    122       } else if (e.ProgressPercentage == heatMapProgressBar.Maximum) {
    123         calculatingPanel.Hide();
     120      if (!progressPanel.Visible && e.ProgressPercentage != progressBar.Maximum) {
     121        progressPanel.Show();
     122      } else if (e.ProgressPercentage == progressBar.Maximum) {
     123        progressPanel.Hide();
    124124      }
    125       heatMapProgressBar.Value = e.ProgressPercentage;
     125      progressBar.Value = e.ProgressPercentage;
    126126    }
    127127  }
Note: See TracChangeset for help on using the changeset viewer.