Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/18/17 12:29:59 (7 years ago)
Author:
pfleck
Message:

#2709

  • Fixed initial selection of the grouping text box (empty string instead of null to select the first entry).
  • General code fixes (removed unnessecary bank lines and code, class member order, ...)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotSingleView.cs

    r14993 r14996  
    2828using HeuristicLab.Core.Views;
    2929using HeuristicLab.MainForm;
    30 using HeuristicLab.MainForm.WindowsForms;
    3130using RegressionType = HeuristicLab.Analysis.ScatterPlotDataRowVisualProperties.ScatterPlotDataRowRegressionType;
    3231
     
    7877        comboBoxGroup.Items.Add(var);
    7978      }
    80       comboBoxGroup.SelectedItem = Content.GroupingVariable;
     79      comboBoxGroup.SelectedItem = Content.GroupingVariable ?? NoGroupItem;
    8180
    8281      // use x and y variable from content
Note: See TracChangeset for help on using the changeset viewer.