diff options
author | sr55 <[email protected]> | 2011-05-08 11:00:16 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-05-08 11:00:16 +0000 |
commit | c2e751e3eb2ed19163c6c2a1318eab28bcbb921b (patch) | |
tree | 2a652aefd39b11c7442136052927df1b0e9b6191 /win/CS/Controls | |
parent | 3d7392c9e4f114408b2fd16bd848a2e10c36fa32 (diff) |
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
Diffstat (limited to 'win/CS/Controls')
-rw-r--r-- | win/CS/Controls/AudioPanel.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/win/CS/Controls/AudioPanel.cs b/win/CS/Controls/AudioPanel.cs index ff56a1330..7a63f7803 100644 --- a/win/CS/Controls/AudioPanel.cs +++ b/win/CS/Controls/AudioPanel.cs @@ -412,6 +412,12 @@ namespace Handbrake.Controls private void RemoveAudioTrack_Click(object sender, EventArgs e)
{
RemoveTrack();
+
+ if (this.AudioTracks.Count == 0)
+ {
+ drp_audioMix.Enabled =
+ drp_audioBitrate.Enabled = drp_audioSample.Enabled = btn_AdvancedAudio.Enabled = true;
+ }
}
#endregion
|