diff options
author | sr55 <[email protected]> | 2012-01-29 12:43:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-01-29 12:43:24 +0000 |
commit | df4a57b120d44b029538c903491db6e8797cd98c (patch) | |
tree | 11e876f1276a4c8ec2156aaedd0f488413a82f98 /win/CS/HandBrake.ApplicationServices/Services | |
parent | 67e4656971e77322caaba271e53790888636b83c (diff) |
WinGui: Fix an issue that was causing the CLI version to be queried on very launch, instead of only when the CLI executable changes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4425 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs b/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs index eeb003d3c..ead389a5d 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/UserSettingService.cs @@ -198,7 +198,7 @@ namespace HandBrake.ApplicationServices.Services userSettings["PromptOnUnmatchingQueries"] = true;
userSettings["NativeLanguage"] = "Any";
userSettings["DubMode"] = 255;
- userSettings["CliExeHash"] = string.Empty;
+ userSettings["HandBrakeExeHash"] = string.Empty;
userSettings["previewScanCount"] = 10;
userSettings["clearOldLogs"] = true;
userSettings["AutoNameTitleCase"] = true;
@@ -213,6 +213,7 @@ namespace HandBrake.ApplicationServices.Services userSettings["DubModeSubtitle"] = 0;
userSettings["addOnlyOneAudioPerLanguage"] = true;
userSettings["MinTitleLength"] = 10;
+ userSettings["ShowAdvancedAudioPassthruOpts"] = false;
}
}
}
|