Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10087


Ignore:
Timestamp:
10/28/13 08:15:54 (10 years ago)
Author:
jkarder
Message:

#2116: fixed readonly property assignment in ParameterCollectionView

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Breadcrumbs/HeuristicLab.Core.Views/3.3/ParameterCollectionView.cs

    r10042 r10087  
    168168            outmostViewHost.Content = item;
    169169            outmostViewHost.UpdateBreadcrumbTrail(oldCrumbs, newCrumbs.Concat(new[] { item }));
    170             outmostViewHost.ActiveView.ReadOnly = ReadOnly;
     170            outmostViewHost.ActiveView.ReadOnly = ReadOnly || (item.Hidden && !AllowEditingOfHiddenParameters);
    171171            outmostViewHost.ActiveView.Locked = Locked;
    172172          }
Note: See TracChangeset for help on using the changeset viewer.