Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/25/10 01:11:47 (14 years ago)
Author:
swagner
Message:

Fixed disabling of details group boxes (#1100)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.cs

    r4096 r4099  
    136136        runCollectionConstraintCollectionView.ReadOnly = itemsListView.Items.Count == 0;
    137137        itemsListView.Enabled = true;
    138         detailsGroupBox.Enabled = true;
     138        detailsGroupBox.Enabled = itemsListView.SelectedItems.Count == 1;
    139139        removeButton.Enabled = itemsListView.SelectedItems.Count > 0 && !Content.IsReadOnly && !ReadOnly;
    140140        clearButton.Enabled = itemsListView.Items.Count > 0 && !Content.IsReadOnly && !ReadOnly;
Note: See TracChangeset for help on using the changeset viewer.