Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/29/12 12:58:51 (12 years ago)
Author:
ascheibe
Message:

#1762 removed blind disabling of controls

File:
1 edited

Legend:

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

    r8156 r8159  
    115115        parentView.Locked = true;
    116116        parentView.ReadOnly = true;
    117         foreach (Control c in this.parentView.Controls)
    118           c.Enabled = false;
    119117        Enabled = true;
    120118        ReadOnly = false;
     
    156154        parentView.Locked = false;
    157155        parentView.ReadOnly = false;
    158         foreach (Control c in this.parentView.Controls)
    159           c.Enabled = true;
    160156        DeregisterProgressEvents();
    161157        progress = null;
    162         this.Visible = false;
     158        Visible = false;
    163159      }
    164160    }
Note: See TracChangeset for help on using the changeset viewer.