Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/10 19:33:44 (14 years ago)
Author:
gkronber
Message:

Implemented changes in plugin administrator UI as requested by swagner. #949 (Overhaul look and feel of plugin administrator)

File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginAdministrator/3.3/EditProductsMenuItem.cs

    r3206 r3208  
    2727
    2828namespace HeuristicLab.PluginAdministrator {
    29   internal class OpenServerProductsEditorMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {
     29  internal class EditProductsMenuItem : HeuristicLab.MainForm.WindowsForms.MenuItem, IUserInterfaceItemProvider {
    3030    public override string Name {
    3131      get { return "Edit Products"; }
     
    3333
    3434    public override IEnumerable<string> Structure {
    35       get { return new string[] { "Plugin Server" }; }
     35      get { return new string[] { "Views" }; }
    3636    }
    3737
    3838    public override int Position {
    39       get { return 1300; }
     39      get { return 1200; }
    4040    }
    4141
    4242    public override void Execute() {
    43       OpenProductEditorAction.Execute(MainFormManager.MainForm);
     43      EditProductsAction.Execute(MainFormManager.MainForm);
    4444    }
    4545  }
Note: See TracChangeset for help on using the changeset viewer.