diff options
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r-- | win/C#/frmOptions.cs | 10 |
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 |