Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/10 16:37:10 (15 years ago)
Author:
gkronber
Message:

Changed plugin manager GUI as suggested by reviewers. #989 (Implement review comments in plugin infrastructure)

File:
1 edited

Legend:

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

    r3600 r3608  
    4242    public PluginManager PluginManager {
    4343      get { return pluginManager; }
    44       set {
    45         // if (value == null) throw new ArgumentNullException();
    46         pluginManager = value;
    47       }
     44      set { pluginManager = value; }
    4845    }
    4946
    5047    public PluginEditor() {
    5148      InitializeComponent();
    52       // Caption = "Upload Plugins";
    53 
     49      pluginImageList.Images.Add(HeuristicLab.PluginInfrastructure.Resources.Resources.plugin_16);
    5450      localAndServerPlugins = new Dictionary<IPluginDescription, IPluginDescription>();
    5551
     
    262258      }
    263259      item.Tag = plugin;
     260      item.ImageIndex = 0;
    264261      item.Checked = false;
    265262      return item;
Note: See TracChangeset for help on using the changeset viewer.