* updated CHANGELOG.txt

* fixed the fix

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2256 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2009-10-18 06:32:54 +00:00
parent ab7bfaea16
commit d1623b987a
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -7,6 +7,7 @@ Process Hacker
* Decreased memory and CPU usage
* FIXED:
* #2880368 - "Highlight Option dialog does not show current colors"
* #2881084 - "System.ArgumentOutOfRangeException"
* Fixed some crashes on 64-bit when viewing thread stacks
1.6
@@ -221,9 +221,9 @@ namespace ProcessHacker
{
int value = (int)((double)totalBytesRead * 100 / size);
if (value >= this.progressDownload.Minimum || value <= this.progressDownload.Maximum)
if (value >= this.progressDownload.Minimum && value <= this.progressDownload.Maximum)
{
this.progressDownload.Value = (int)((double)totalBytesRead * 100 / size);
this.progressDownload.Value = value;
}
}));
}