summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-07-04 16:10:48 +0000
committersr55 <[email protected]>2008-07-04 16:10:48 +0000
commitb5d74158d787c44297a90ca1ca2944de9accf348 (patch)
treea8217136e205288b78751456eb5ad96354075010 /win/C#/frmOptions.cs
parent3163a1a8238ef11e246bd550712e9ee997470db7 (diff)
WinGui:
- Drive detection lists DVD title in Source Menu (Optional Feature) - Updated the help menu to match the macgui. - Added "cancel" button to frmReadDVD so if the CLI get's stuck, user can cancel the scan without restarting the GUI git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1555 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index d233b5761..38d89c65b 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -22,6 +22,7 @@ namespace Handbrake
public frmOptions()
{
InitializeComponent();
+
if (Properties.Settings.Default.updateStatus == "Checked")
{
check_updateCheck.CheckState = CheckState.Checked;
@@ -45,6 +46,11 @@ namespace Handbrake
check_autoNaming.CheckState = CheckState.Checked;
}
+ if (Properties.Settings.Default.drive_detection == "Checked")
+ {
+ btn_drive_detect.CheckState = CheckState.Checked;
+ }
+
text_an_path.Text = Properties.Settings.Default.autoNamePath;
if (text_an_path.Text == "")
@@ -98,6 +104,11 @@ namespace Handbrake
pathFinder.ShowDialog();
text_an_path.Text = pathFinder.SelectedPath;
}
+
+ private void btn_drive_detect_CheckedChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.drive_detection = btn_drive_detect.CheckState.ToString();
+ }
private void text_an_path_TextChanged(object sender, EventArgs e)
{
@@ -111,6 +122,8 @@ namespace Handbrake
}
#endregion
+
+