Ignore:
Timestamp:
2/3/2010 12:29:46 AM (2 years ago)
Author:
lowjoel
Message:

Forward port from Eraser 6.0: Fixed potential regression in r1721 and r1633 where we added in calls to CreateHandle? so that window handles are created immediately for calls to InvokeRequired?. Check that IsHandleCreated? is false so that the handle will not be recreated and throw an InvalidOperationException?

Location:
trunk/eraser6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/eraser6

  • trunk/eraser6/Eraser/SchedulerPanel.cs

    r1713 r1736  
    4545            InitializeComponent(); 
    4646            UXThemeApi.UpdateControlTheme(schedulerDefaultMenu); 
    47             CreateHandle(); 
     47            if (!IsHandleCreated) 
     48                CreateHandle(); 
    4849 
    4950            //Populate the scheduler list-view with the current task list 
Note: See TracChangeset for help on using the changeset viewer.