diff options
author | sr55 <[email protected]> | 2010-10-30 14:23:40 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-10-30 14:23:40 +0000 |
commit | ca9461c624d182a68746af2bfa006f5a00124c21 (patch) | |
tree | 355570d2751c0c3d3c9e5c0429e3f45679bb5f22 /win/C#/frmQueue.cs | |
parent | d28934dc0394cb733fcef025830552f86b77fd6a (diff) |
WinGui:
- Fix a display issue on the queue where the pass count was incorrect.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3631 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index eedc10909..75b7c6cb5 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -131,7 +131,7 @@ namespace Handbrake string.Format(
"Encoding: Pass {0} of {1}, {2:00.00}% Time Remaining: {3}",
e.Task,
- e.Task,
+ e.TaskCount,
e.PercentComplete,
e.EstimatedTimeLeft);
}
|