Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/14 14:42:28 (10 years ago)
Author:
rstoll
Message:
  • ManipulationView - textbox was glueing to the label in tab delete columns with small variance, fixed it
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ManipulationView.cs

    r10709 r10710  
    6464
    6565    private void lstMethods_SelectedIndexChanged(object sender, System.EventArgs e) {
     66
    6667      int index = lstMethods.SelectedIndex;
    6768      tabsData.SelectedIndex = index + 1;
     
    7071
    7172      //in order that button will be enabled if text is already valid
    72 
    73       validators[index]();
     73      if (index >= 0) {
     74        validators[index]();
     75      }
    7476    }
    7577
Note: See TracChangeset for help on using the changeset viewer.