summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/Functions')
-rw-r--r--win/C#/Functions/QueryGenerator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs
index 0ba49171c..3b34cd577 100644
--- a/win/C#/Functions/QueryGenerator.cs
+++ b/win/C#/Functions/QueryGenerator.cs
@@ -35,7 +35,7 @@ namespace Handbrake.Functions
query += " -t " + titleInfo[0];
}
- if (Properties.Settings.Default.dvdnav)
+ if (!Properties.Settings.Default.noDvdNav)
if (mainWindow.drop_angle.Items.Count != 0)
query += " --angle " + mainWindow.drop_angle.SelectedItem;
@@ -519,8 +519,8 @@ namespace Handbrake.Functions
query += " -v " + Properties.Settings.Default.verboseLevel;
- if (Properties.Settings.Default.dvdnav)
- query += " --dvdnav";
+ if (Properties.Settings.Default.noDvdNav)
+ query += " --no-dvdnav";
#endregion
return query;