Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/14 14:42:44 (10 years ago)
Author:
bburlacu
Message:

#1763: Improved alignment of node edit dialogs. Removed GroupSymbols from the list of available symbols when inserting new nodes. Added additional condition disallowing paste operations when it exceeds a symbols max arity. Moved tree status indicator to lower left and changed visibility to appear only when the tree is invalid.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/InteractiveSymbolicDataAnalysisSolutionSimplifierView.cs

    r11086 r11111  
    116116        btnOptimizeConstants.Enabled = true;
    117117        btnSimplify.Enabled = true;
    118         treeStatusValue.Text = "Valid";
    119         treeStatusValue.ForeColor = Color.Green;
     118        treeStatusValue.Visible = false;
    120119      } else {
    121120        btnOptimizeConstants.Enabled = false;
    122121        btnSimplify.Enabled = false;
    123         treeStatusValue.Text = "Invalid";
    124         treeStatusValue.ForeColor = Color.Red;
     122        treeStatusValue.Visible = true;
    125123      }
    126124      this.Refresh();
Note: See TracChangeset for help on using the changeset viewer.