diff options
author | sr55 <[email protected]> | 2020-04-10 20:28:16 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-04-10 20:28:16 +0100 |
commit | b0a2c68ee60bd3d15889fa41cf1879c276a9e1b8 (patch) | |
tree | 52cf128eb55652d65d944e96e43c685b0c15da9f /win/CS/HandBrakeWPF/Services/UserSettingService.cs | |
parent | 0abc8cb07a4d6ca27d0a0c300a78957b610b773e (diff) |
WinGui:
- Adding multi-instance support in the UI for the worker process.
- Handling port conflicts better. It will now try up to 100 ports from the default port set in preferences.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/UserSettingService.cs')
-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 4c181541a..1570e6f85 100644 --- a/win/CS/HandBrakeWPF/Services/UserSettingService.cs +++ b/win/CS/HandBrakeWPF/Services/UserSettingService.cs @@ -304,7 +304,7 @@ namespace HandBrakeWPF.Services defaults.Add(UserSettingConstants.DefaultPlayer, false);
// Experimental
- defaults.Add(UserSettingConstants.RemoteServiceEnabled, false);
+ defaults.Add(UserSettingConstants.RemoteServiceEnabled, true);
defaults.Add(UserSettingConstants.RemoteServicePort, 8037);
// Misc
|