From c2e751e3eb2ed19163c6c2a1318eab28bcbb921b Mon Sep 17 00:00:00 2001 From: sr55 Date: Sun, 8 May 2011 11:00:16 +0000 Subject: WinGui: - Add Elapsed Encode Time the main window. - Add Elapsed Queue Time to the queue window. (Note, Pausing the queue resets this currently) - Fixed an issue with disabled controls on the audio panel after removing the last track which was passthru. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3973 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- win/CS/frmMain.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'win/CS/frmMain.cs') diff --git a/win/CS/frmMain.cs b/win/CS/frmMain.cs index 1b053150c..5177f6983 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -2373,13 +2373,15 @@ namespace Handbrake return; } + lbl_encode.Text = string.Format( - "{0:00.00}%, FPS: {1:000.0}, Avg FPS: {2:000.0}, Time Remaining: {3}, Encode(s) Pending {4}", + "{0:00.00}%, FPS: {1:000.0}, Avg FPS: {2:000.0}, Time Remaining: {3}, Elapsed: {4:hh\\:mm\\:ss}, Pending Jobs {5}", e.PercentComplete, e.CurrentFrameRate, e.AverageFrameRate, e.EstimatedTimeLeft, + e.ElapsedTime, this.queueProcessor.QueueManager.Count); ProgressBarStatus.Value = (int)Math.Round(e.PercentComplete); -- cgit v1.2.3