diff options
author | sr55 <[email protected]> | 2009-01-05 19:19:00 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-01-05 19:19:00 +0000 |
commit | 8bd864a502666482a0f47e22d5f671b7c502e027 (patch) | |
tree | 21501963b4a1c1ecb8dcf397a5de6cae0369fc03 /win/C#/frmOptions.cs | |
parent | 5917460b2da251a54143874586ae041c27350a13 (diff) |
WinGui:
- Removed some white space in a few files.
- Untied options window from frmMain.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2062 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r-- | win/C#/frmOptions.cs | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs index e31e41abf..ff2fab0f0 100644 --- a/win/C#/frmOptions.cs +++ b/win/C#/frmOptions.cs @@ -16,14 +16,12 @@ namespace Handbrake {
public partial class frmOptions : Form
{
- private frmMain mainWindow;
/// <summary>
/// When the form loads, Initialise all the setting components with their correct values
/// </summary>
- public frmOptions(frmMain window)
+ public frmOptions()
{
InitializeComponent();
- mainWindow = window;
// #############################
// General
@@ -136,16 +134,6 @@ namespace Handbrake private void check_tooltip_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.tooltipEnable = check_tooltip.CheckState.ToString();
- if (check_tooltip.Checked)
- {
- ToolTip.Active = true;
- mainWindow.ToolTip.Active = true;
- }
- else
- {
- ToolTip.Active = false;
- mainWindow.ToolTip.Active = false;
- }
}
private void drp_completeOption_SelectedIndexChanged(object sender, EventArgs e)
{
|