Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/18/20 14:39:50 (5 years ago)
Author:
dpiringe
Message:

#3026:

  • added support for string values without range limitation (dropdown gets automatically replaced by textbox)
  • fixed a UI bug for JsonItemValidValuesControl -> now the control resizes correctly
  • fixed a bug in AlgorithmConverter -> now it searches for the ItemName (instead of Name) in method Inject
  • fixed a bug in StringValueConverter -> now it sets the correct name
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/ExportJsonDialog.cs

    r17439 r17443  
    125125              if (c is ResultItem) {
    126126                resultItems.Items.Add(c.Name, true);
     127               
    127128                ResultItems.Add(c.Name, c);
    128129              } else {
     
    154155          panel.Controls.Add(control);
    155156          control.Width = panel.Width;
     157          control.Height = panel.Height;
    156158          control.Dock = DockStyle.Fill;
    157159          control.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
Note: See TracChangeset for help on using the changeset viewer.