summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-08-31 12:23:42 +0000
committersr55 <[email protected]>2007-08-31 12:23:42 +0000
commitbdd995d08b5a4e7a72063ac58b8c47d629f2a070 (patch)
tree9979fdc47adb4cc5311f425cbc14e8b8b789219b /win/C#/frmOptions.cs
parent18da7f138f5be947f1f904a78253ddaf39378a60 (diff)
WinGui:
- Cleaned up the Options window a bit. - Added On Encode Complete Options (in options) - A few small UI tweaks. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@908 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index a85792400..bc511f24c 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -27,6 +27,7 @@ namespace Handbrake
}
drp_processors.Text = Properties.Settings.Default.Processors;
drp_Priority.Text = Properties.Settings.Default.processPriority;
+ drp_completeOption.Text = Properties.Settings.Default.CompletionOption;
if (Properties.Settings.Default.verbose == "Checked")
{
@@ -85,6 +86,13 @@ namespace Handbrake
Properties.Settings.Default.tooltipEnable = check_tooltip.CheckState.ToString();
}
+ private void drp_completeOption_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.CompletionOption = drp_completeOption.Text;
+ }
+
+
+
}
} \ No newline at end of file