summaryrefslogtreecommitdiffstats
path: root/win/C#/frmOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/frmOptions.cs')
-rw-r--r--win/C#/frmOptions.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/C#/frmOptions.cs b/win/C#/frmOptions.cs
index 9b33b9030..77a7a58ce 100644
--- a/win/C#/frmOptions.cs
+++ b/win/C#/frmOptions.cs
@@ -175,7 +175,7 @@ namespace Handbrake
}
// Use Experimental dvdnav
- if (Properties.Settings.Default.dvdnav)
+ if (Properties.Settings.Default.noDvdNav)
check_dvdnav.CheckState = CheckState.Checked;
// #############################
@@ -412,7 +412,7 @@ namespace Handbrake
private void check_dvdnav_CheckedChanged(object sender, EventArgs e)
{
- Properties.Settings.Default.dvdnav = check_dvdnav.Checked;
+ Properties.Settings.Default.noDvdNav = check_dvdnav.Checked;
}
#endregion