diff options
author | sr55 <[email protected]> | 2007-07-29 21:15:38 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-07-29 21:15:38 +0000 |
commit | ae10b5309ebf402c001c04ec1875505c16369427 (patch) | |
tree | 618193d185076a0885d60311cf25059f983f5b2c /win/C#/frmOptions.cs | |
parent | a74a13ded2bdcfd5bb9dbcce8cc57c78c15ac9ed (diff) |
WinGui:
- Removed the readDVD Window and all its components (In options & program settings file) This is not needed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@760 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r-- | win/C#/frmOptions.cs | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index 66ae0a56d..fc2e15207 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -25,12 +25,6 @@ namespace Handbrake {
check_userDefaultSettings.CheckState = CheckState.Checked;
}
-
- if (Properties.Settings.Default.readDVDWindow == "Checked")
- {
- check_readDVDWindow.CheckState = CheckState.Checked;
- }
-
drp_processors.Text = Properties.Settings.Default.Processors;
drp_Priority.Text = Properties.Settings.Default.processPriority;
@@ -50,11 +44,6 @@ namespace Handbrake Properties.Settings.Default.defaultSettings = check_userDefaultSettings.CheckState.ToString();
}
- private void check_readDVDWindow_CheckedChanged(object sender, EventArgs e)
- {
- Properties.Settings.Default.readDVDWindow = check_readDVDWindow.CheckState.ToString();
- }
-
private void drp_processors_SelectedIndexChanged(object sender, EventArgs e)
{
Properties.Settings.Default.Processors = drp_processors.Text;
@@ -74,6 +63,6 @@ namespace Handbrake {
Properties.Settings.Default.Save(); // Small hack for Vista. Seems to work fine on XP without this
this.Close();
- }
+ }
}
}
\ No newline at end of file |