Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/26/15 12:09:33 (10 years ago)
Author:
pfleck
Message:

#2387

  • Adapted behavior of the matching in the TypeSelector that it behave the same as the NewItemDialog. The search string is tokenized by space and matches if all tokens are contained, (eg. "Sym Reg" matches "SymbolicRegression...").
  • Enabled navigation with up- and down-arrow in the tree while the search-box is focused.
  • Improved response time of NewItemDialog and TypeSelector when they contain a large amount of nodes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimizer/3.3/NewItemDialog.cs

    r12393 r12397  
    202202
    203203        // select first item
     204        typesTreeView.BeginUpdate();
    204205        var firstNode = FirstVisibleNode;
    205206        while (firstNode != null && !(firstNode.Tag is Type))
     
    215216          typesTreeView.Enabled = true;
    216217        }
     218        typesTreeView.EndUpdate();
    217219        UpdateDescription();
    218220      }
Note: See TracChangeset for help on using the changeset viewer.