diff options
author | sr55 <[email protected]> | 2010-06-11 21:08:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-11 21:08:44 +0000 |
commit | 5b73df5035172e03569777025e040e7fbfe9b875 (patch) | |
tree | d480b67c3d34986c2bb569283662d608d4b6186f /win/C#/HandBrake.ApplicationServices/Services | |
parent | 4ecb7b2c297ba7e87c0a9ab8e0768d45fc4f0810 (diff) |
WinGui:
- Fixes some issues with status labels not updating correctly on the queue window.
- Now includes encode status on the queue window.
- Minor UI tweaks.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3377 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Services/Encode.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs index d4e971e63..cb6dbee7d 100644 --- a/win/C#/HandBrake.ApplicationServices/Services/Encode.cs +++ b/win/C#/HandBrake.ApplicationServices/Services/Encode.cs @@ -595,7 +595,8 @@ namespace HandBrake.ApplicationServices.Services CurrentFrameRate = currentFps,
EstimatedTimeLeft = timeRemaining,
PercentComplete = percentComplete,
- Task = currentTask
+ Task = currentTask,
+ TaskCount = taskCount
};
if (this.EncodeStatusChanged != null)
|