summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-09-13 20:54:11 +0000
committersr55 <[email protected]>2009-09-13 20:54:11 +0000
commit9d0ec3bed586f45f710882df0942e36d0f48aafe (patch)
tree325800c89e649949a407a06ee9d1b282d520df9f /win
parent381e01c88a65395f12c0539a5303ef15cb323df1 (diff)
WinGui:
- Show the number of encodes pending on the main window. Updates after each new item is added to the queue. Also updates with the status of encodes / items left on the queue. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2817 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r--win/C#/frmMain.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/win/C#/frmMain.cs b/win/C#/frmMain.cs
index 7116c8688..2a32be763 100644
--- a/win/C#/frmMain.cs
+++ b/win/C#/frmMain.cs
@@ -752,6 +752,8 @@ namespace Handbrake
else
encodeQueue.AddJob(query, sourcePath, text_destination.Text);
+ lbl_encode.Text = encodeQueue.Count + " encode(s) pending in the queue";
+
queueWindow.Show();
}
}
@@ -1622,7 +1624,7 @@ namespace Handbrake
}
lbl_encode.Visible = true;
- lbl_encode.Text = "Encoding in Progress";
+ lbl_encode.Text = "Encoding with " + encodeQueue.Count + " encode(s) pending";
btn_start.Text = "Stop";
btn_start.ToolTipText = "Stop the encoding process.";
btn_start.Image = Properties.Resources.stop;