diff options
author | sr55 <[email protected]> | 2010-06-26 22:13:02 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-06-26 22:13:02 +0000 |
commit | 4a6a10cebe0ff0943b4943f17ab3e4b82a408add (patch) | |
tree | 46c663bd0ce2c693da3f9dc0ad9df4add1a3d11e /win/C#/frmQueue.cs | |
parent | 66ac30957390dc8568d6bf0064f1d69736bed4d3 (diff) |
WinGui:
- Expose the "When Done" option on the queue window.
- Minor UI tweaks to the queue window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3410 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmQueue.cs')
-rw-r--r-- | win/C#/frmQueue.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/win/C#/frmQueue.cs b/win/C#/frmQueue.cs index b5a37bc5a..7d52ddef5 100644 --- a/win/C#/frmQueue.cs +++ b/win/C#/frmQueue.cs @@ -62,6 +62,8 @@ namespace Handbrake queue.EncodeStarted += new EventHandler(queue_EncodeStarted);
queue.EncodeEnded += new EventHandler(queue_EncodeEnded);
+
+ drp_completeOption.Text = Properties.Settings.Default.CompletionOption;
}
/// <summary>
@@ -687,5 +689,20 @@ namespace Handbrake this.Hide();
base.OnClosing(e);
}
+
+ /// <summary>
+ /// Change the OnComplete option setting.
+ /// </summary>
+ /// <param name="sender">
+ /// The sender.
+ /// </param>
+ /// <param name="e">
+ /// The EventArgs.
+ /// </param>
+ private void CompleteOptionChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.CompletionOption = drp_completeOption.Text;
+ Properties.Settings.Default.Save();
+ }
}
}
\ No newline at end of file |