Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/04/19 15:33:31 (5 years ago)
Author:
mkommend
Message:

#2978: Merged 16501-16506 into stable.

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ProgressView.cs

    r17064 r17069  
    115115      UpdateButtonsState();
    116116
     117      Control.SuspendRepaint();
    117118      Control.Enabled = false;
    118119      Parent = Control.Parent;
    119120      BringToFront();
     121      Control.ResumeRepaint(true);
    120122      Visible = true;
    121123    }
     
    129131
    130132      Visible = false;
     133      Control.SuspendRepaint();
    131134      Control.Enabled = true;
     135      Control.ResumeRepaint(true);
    132136      Parent = null;
    133137    }
Note: See TracChangeset for help on using the changeset viewer.