diff --git a/trunk/CHANGELOG.txt b/trunk/CHANGELOG.txt index 2a9939dba..bb1aa0d9c 100644 --- a/trunk/CHANGELOG.txt +++ b/trunk/CHANGELOG.txt @@ -18,6 +18,7 @@ Process Hacker named pipe connections * Better file object names without KProcessHacker * Better IP address resolving + * CPU, I/O and memory indicators * Child windows float by default * Automatic tree text coloring, allowing for dark highlighting colors diff --git a/trunk/ProcessHacker/Components/Indicator.cs b/trunk/ProcessHacker/Components/Indicator.cs index 626d96c12..89de26ea9 100644 --- a/trunk/ProcessHacker/Components/Indicator.cs +++ b/trunk/ProcessHacker/Components/Indicator.cs @@ -63,7 +63,8 @@ namespace ProcessHacker.Components public Indicator() { InitializeComponent(); - base.SetStyle(ControlStyles.DoubleBuffer | ControlStyles.ResizeRedraw | ControlStyles.UserPaint, true); + base.SetStyle(ControlStyles.ResizeRedraw | ControlStyles.UserPaint | + ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint, true); } protected override void OnPaint(PaintEventArgs e) {