summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
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