Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15266 for trunk/sources


Ignore:
Timestamp:
07/17/17 22:00:44 (7 years ago)
Author:
mkommend
Message:

#2810: Moved condition to check for SizeDimension.Constant to the top.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBubbleChartView.cs

    r15265 r15266  
    636636
    637637    private string GetTooltipValue(IRun run, string columnName) {
     638      if (columnName == SizeDimension.Constant.ToString())
     639        return string.Empty;
     640
    638641      int columnIndex = Matrix.ColumnNames.ToList().IndexOf(columnName);
    639642
     
    642645        return Content.GetValue(run, columnName).ToString();
    643646      }
    644 
    645       if (columnName == SizeDimension.Constant.ToString())
    646         return string.Empty;
    647647
    648648      double? value = GetValue(run, columnName);
Note: See TracChangeset for help on using the changeset viewer.