diff options
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r-- | win/C#/frmOptions.cs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index d947a6354..fb48f803d 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -45,6 +45,8 @@ namespace Handbrake if (Properties.Settings.Default.defaultSettings == "Checked")
check_userDefaultSettings.CheckState = CheckState.Checked;
+ txt_decomb.Text = Properties.Settings.Default.decomb;
+
drp_processors.Text = Properties.Settings.Default.Processors;
drp_Priority.Text = Properties.Settings.Default.processPriority;
drp_completeOption.Text = Properties.Settings.Default.CompletionOption;
@@ -124,7 +126,12 @@ namespace Handbrake pathFinder.ShowDialog();
text_an_path.Text = pathFinder.SelectedPath;
}
-
+
+ private void txt_decomb_TextChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.decomb = txt_decomb.Text;
+ }
+
private void btn_drive_detect_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.drive_detection = btn_drive_detect.CheckState.ToString();
@@ -152,8 +159,5 @@ namespace Handbrake }
#endregion
-
-
-
}
}
\ No newline at end of file |