Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4519 for trunk/sources


Ignore:
Timestamp:
09/27/10 15:55:22 (14 years ago)
Author:
mkommend
Message:

Called SetEnabledStateOfControls after the state changes have been propagated (ticket #1155).

Location:
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/ContentView.cs

    r4446 r4519  
    6969            locked = value;
    7070            OnLockedChanged();
    71             SetEnabledStateOfControls();
    7271            PropertyInfo prop = typeof(IContentView).GetProperty("Locked");
    7372            PropagateStateChanges(this, typeof(IContentView), prop);
     73            SetEnabledStateOfControls();
    7474            OnChanged();
    7575          }
  • trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/View.cs

    r4449 r4519  
    6767            this.readOnly = value;
    6868            OnReadOnlyChanged();
    69             SetEnabledStateOfControls();
    7069            PropertyInfo prop = typeof(IView).GetProperty("ReadOnly");
    7170            PropagateStateChanges(this, typeof(IView), prop);
     71            SetEnabledStateOfControls();
    7272            OnChanged();
    7373          }
Note: See TracChangeset for help on using the changeset viewer.