diff options
author | sr55 <[email protected]> | 2020-08-22 15:16:26 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-08-22 15:16:48 +0100 |
commit | a4a53c3baeafd7b43c5cf79c0ced3d52cf648fd2 (patch) | |
tree | 3bade58a7af8f380f067701a6192564b6ae23772 /win/CS/HandBrakeWPF/Services | |
parent | 6ff96bb1554f623e1ae8f7036c61cf682038c936 (diff) |
WinGui: Make it clearer that other media players may work for video preview path in preferences. #3069
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/UserSettingService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/UserSettingService.cs b/win/CS/HandBrakeWPF/Services/UserSettingService.cs index 27c3f0796..59afc88ba 100644 --- a/win/CS/HandBrakeWPF/Services/UserSettingService.cs +++ b/win/CS/HandBrakeWPF/Services/UserSettingService.cs @@ -269,7 +269,7 @@ namespace HandBrakeWPF.Services defaults.Add(UserSettingConstants.ShowStatusInTitleBar, false);
defaults.Add(UserSettingConstants.ShowAddAllToQueue, false);
defaults.Add(UserSettingConstants.ShowAddSelectionToQueue, false);
- defaults.Add(UserSettingConstants.VLCPath, @"C:\Program Files\VideoLAN\vlc\vlc.exe");
+ defaults.Add(UserSettingConstants.MediaPlayerPath, @"C:\Program Files\VideoLAN\vlc\vlc.exe");
// Output Files
defaults.Add(UserSettingConstants.AutoNaming, true);
|