Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10710


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
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
Files:
2 edited

Legend:

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

    r10709 r10710  
    4949      this.tabPreviewDeleteRowsInfo = new System.Windows.Forms.TabPage();
    5050      this.tabPreviewShuffle = new System.Windows.Forms.TabPage();
    51       this.label8 = new System.Windows.Forms.Label();
    5251      this.label9 = new System.Windows.Forms.Label();
    5352      this.grpBoxData.SuspendLayout();
     
    182181      // tabDataDeleteColumnsVariance
    183182      //
    184       this.tabDataDeleteColumnsVariance.Controls.Add(this.label8);
    185183      this.tabDataDeleteColumnsVariance.Controls.Add(this.txtDeleteColumnsVariance);
    186184      this.tabDataDeleteColumnsVariance.Controls.Add(this.label4);
     
    195193      // txtDeleteColumnsVariance
    196194      //
    197       this.txtDeleteColumnsVariance.Location = new System.Drawing.Point(223, 0);
     195      this.txtDeleteColumnsVariance.Location = new System.Drawing.Point(226, 0);
    198196      this.txtDeleteColumnsVariance.Name = "txtDeleteColumnsVariance";
    199197      this.txtDeleteColumnsVariance.Size = new System.Drawing.Size(135, 20);
     
    206204      this.label4.Location = new System.Drawing.Point(3, 3);
    207205      this.label4.Name = "label4";
    208       this.label4.Size = new System.Drawing.Size(214, 13);
     206      this.label4.Size = new System.Drawing.Size(217, 13);
    209207      this.label4.TabIndex = 3;
    210       this.label4.Text = "Delete columns with a variance smaller than";
     208      this.label4.Text = "Delete columns with a variance smaller than ";
    211209      //
    212210      // tabDataDeleteRowsInfo
     
    338336      this.tabPreviewShuffle.Text = "shuffle";
    339337      this.tabPreviewShuffle.UseVisualStyleBackColor = true;
    340       //
    341       // label8
    342       //
    343       this.label8.AutoSize = true;
    344       this.label8.Location = new System.Drawing.Point(364, 3);
    345       this.label8.Name = "label8";
    346       this.label8.Size = new System.Drawing.Size(89, 13);
    347       this.label8.TabIndex = 6;
    348       this.label8.Text = "% missing values.";
    349338      //
    350339      // label9
     
    414403    private System.Windows.Forms.TabPage tabPage1;
    415404    private System.Windows.Forms.Label label7;
    416     private System.Windows.Forms.Label label8;
    417405    private System.Windows.Forms.Label label9;
    418406  }
  • 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.