diff options
author | sr55 <[email protected]> | 2010-11-20 15:39:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-11-20 15:39:43 +0000 |
commit | 92eea9306fbf1de02316b4f064c19834eeb70265 (patch) | |
tree | 0d1f0dcb7e6c66a8ca102513870dc7c98a37a0f0 /win/C#/frmQueue.cs | |
parent | 89de52135fb2fba816979e3971742f4e15d74090 (diff) |
WinGui:
- Fix an issue where changing the encode completion option on the queue didn't take effect until HandBrake was restarted.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3683 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index 75b7c6cb5..2684772bb 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -703,6 +703,7 @@ namespace Handbrake private void CompleteOptionChanged(object sender, EventArgs e)
{
Properties.Settings.Default.CompletionOption = drp_completeOption.Text;
+ HandBrake.ApplicationServices.Init.CompletionOption = drp_completeOption.Text;
Properties.Settings.Default.Save();
}
}
|