summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-08-24 17:57:54 +0000
committersr55 <[email protected]>2008-08-24 17:57:54 +0000
commit163bce7432c717a0d102568a0d582375f507e3f7 (patch)
treea62dc6dbd0d64b31a79e2630db4133b37885d668 /win/C#/frmOptions.cs
parentb4553cd70fde71ac12974aa83dec4508f8f690ab (diff)
WinGui:
- Adds checkbox to enable decomb. - Program Options updated with an option to customize decomb values. - Queue Recovery feature. If you close the GUI without letting a queue complete, the user will be prompted if they'd like to recover the queue on next launch. - Small bugfix with the queue HandBrakeCLI monitor thread not stopping when the GUI is closed. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1653 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs12
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