Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/17 17:19:35 (8 years ago)
Author:
gkronber
Message:

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceReintegration/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/LayoutEngines/BoxesLayoutEngine.cs

    r14185 r14927  
    8383        visualTreeNode.Y = (int)center_y - visualTreeNode.Height / 2;
    8484      }
    85         //width too small to draw in desired sized
     85      //width too small to draw in desired sized
    8686      else if (actualWidth < visualTreeNode.PreferredWidth && actualHeight >= visualTreeNode.PreferredHeight) {
    8787        visualTreeNode.Width = actualWidth;
     
    9090        visualTreeNode.Y = (int)center_y - visualTreeNode.Height / 2;
    9191      }
    92         //height too small to draw in desired sized
     92      //height too small to draw in desired sized
    9393      else if (actualWidth >= visualTreeNode.PreferredWidth && actualHeight < visualTreeNode.PreferredHeight) {
    9494        visualTreeNode.Width = visualTreeNode.PreferredWidth;
     
    9797        visualTreeNode.Y = y;
    9898      }
    99         //width and height too small to draw in desired size
     99      //width and height too small to draw in desired size
    100100      else {
    101101        visualTreeNode.Width = actualWidth;
Note: See TracChangeset for help on using the changeset viewer.