summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-07-29 13:22:37 +0000
committersr55 <[email protected]>2008-07-29 13:22:37 +0000
commit9f9dfaa881dde27143fead985923350bcb4ee321 (patch)
tree740a1b535a64a412da6444a68a90bd3757fbdf96 /win/C#/frmOptions.cs
parentc334dbfa9fb0cca851fe45c8fb9ba0a4c147ba2e (diff)
WinGui:
- Added option to start CLI minimized git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1590 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs18
1 files changed, 10 insertions, 8 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index 38d89c65b..66e5460d5 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -51,6 +51,11 @@ namespace Handbrake
btn_drive_detect.CheckState = CheckState.Checked;
}
+ if (Properties.Settings.Default.cli_minimized == "Checked")
+ {
+ check_cli_minimized.CheckState = CheckState.Checked;
+ }
+
text_an_path.Text = Properties.Settings.Default.autoNamePath;
if (text_an_path.Text == "")
@@ -120,15 +125,12 @@ namespace Handbrake
else
Properties.Settings.Default.autoNamePath = text_an_path.Text;
}
- #endregion
-
-
-
-
-
-
-
+ private void check_cli_minimized_CheckedChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.cli_minimized = check_cli_minimized.CheckState.ToString();
+ }
+ #endregion
}
} \ No newline at end of file