SEBWIN-525: Forgot to set all display settings of permissive configuration for browser configuration resource.
This commit is contained in:
parent
ab73695d12
commit
172845b3c0
1 changed files with 5 additions and 3 deletions
|
@ -24,9 +24,9 @@ namespace SafeExamBrowser.Runtime.Operations
|
||||||
{
|
{
|
||||||
internal class ConfigurationOperation : ConfigurationBaseOperation
|
internal class ConfigurationOperation : ConfigurationBaseOperation
|
||||||
{
|
{
|
||||||
private IFileSystem fileSystem;
|
private readonly IFileSystem fileSystem;
|
||||||
private IHashAlgorithm hashAlgorithm;
|
private readonly IHashAlgorithm hashAlgorithm;
|
||||||
private ILogger logger;
|
private readonly ILogger logger;
|
||||||
|
|
||||||
public override event ActionRequiredEventHandler ActionRequired;
|
public override event ActionRequiredEventHandler ActionRequired;
|
||||||
public override event StatusChangedEventHandler StatusChanged;
|
public override event StatusChangedEventHandler StatusChanged;
|
||||||
|
@ -208,6 +208,8 @@ namespace SafeExamBrowser.Runtime.Operations
|
||||||
Context.Next.Settings.Applications.Blacklist.Clear();
|
Context.Next.Settings.Applications.Blacklist.Clear();
|
||||||
Context.Next.Settings.Applications.Whitelist.Clear();
|
Context.Next.Settings.Applications.Whitelist.Clear();
|
||||||
Context.Next.Settings.Display.AllowedDisplays = 10;
|
Context.Next.Settings.Display.AllowedDisplays = 10;
|
||||||
|
Context.Next.Settings.Display.IgnoreError = true;
|
||||||
|
Context.Next.Settings.Display.InternalDisplayOnly = false;
|
||||||
Context.Next.Settings.Browser.DeleteCacheOnShutdown = false;
|
Context.Next.Settings.Browser.DeleteCacheOnShutdown = false;
|
||||||
Context.Next.Settings.Browser.DeleteCookiesOnShutdown = false;
|
Context.Next.Settings.Browser.DeleteCookiesOnShutdown = false;
|
||||||
Context.Next.Settings.Browser.StartUrl = uri.AbsoluteUri;
|
Context.Next.Settings.Browser.StartUrl = uri.AbsoluteUri;
|
||||||
|
|
Loading…
Reference in a new issue