summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2009-02-11 23:33:19 +0000
committersr55 <[email protected]>2009-02-11 23:33:19 +0000
commit7556f1aa51659a9d5aa96e6f7b8e0e9dcf165248 (patch)
treed69d1f18b55931b8e8f2a20dbdc62a496018d753 /win/C#/frmOptions.cs
parentbfd2a847978e4594236ff012ec69f5867c0e74d0 (diff)
WinGui:
- Constant Quality Slider now QP/RF based. - Nearest percentage is also shown for reference. - Preset system also updated to handle new CP/RF values git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2146 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index e56dbe79e..d6ee3a3ef 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -113,6 +113,8 @@ namespace Handbrake
// Enable snapshot updating
if (Properties.Settings.Default.MainWindowMinimize == "Checked")
check_mainMinimize.CheckState = CheckState.Checked;
+
+ drop_x264step.SelectedItem = Properties.Settings.Default.x264cqstep;
}
#region General
@@ -246,6 +248,12 @@ namespace Handbrake
{
Properties.Settings.Default.checkSnapshot = check_snapshot.CheckState.ToString();
}
+
+ private void x264step_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ Properties.Settings.Default.x264cqstep = drop_x264step.Text;
+ }
+
#endregion
private void btn_close_Click(object sender, EventArgs e)
@@ -253,5 +261,7 @@ 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