mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
* 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:
@@ -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;
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user