Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5859


Ignore:
Timestamp:
03/29/11 11:52:07 (13 years ago)
Author:
mkommend
Message:

#1049: Added version information to the plugin !treeNodes in the TypeSelector.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelector.cs

    r5850 r5859  
    114114        foreach (IPluginDescription plugin in plugins) {
    115115          TreeNode pluginNode = new TreeNode();
    116           pluginNode.Text = plugin.Name;
     116          pluginNode.Text = string.Format("{0} [{1}.{2}]", plugin.Name, plugin.Version.Major, plugin.Version.Minor);
    117117          pluginNode.ImageIndex = 1;
    118118          pluginNode.SelectedImageIndex = pluginNode.ImageIndex;
Note: See TracChangeset for help on using the changeset viewer.