Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/10 19:15:41 (14 years ago)
Author:
gkronber
Message:

Implemented reviewer comments in plugin infrastructure. #989 (Implement review comments in plugin infrastructure)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/PluginEditor.cs

    r3547 r3600  
    9797        }
    9898        foreach (ColumnHeader column in listView.Columns)
    99           column.Width = -1;
     99          if (listView.Items.Count > 0)
     100            column.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
     101          else column.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
    100102        //listView.suppressCheckedEvents = false;
    101103        listView.CheckBoxes = true;
Note: See TracChangeset for help on using the changeset viewer.