From d52210a3eed202bdd5cc3775e18b380d34c5274c Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Sun, 12 Mar 2023 17:49:20 +0100 Subject: [PATCH] 1.8.1 --- CHANGELOG.md | 1 + SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f52e495..7015511f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - fixed issue with finder search in tracelog - fixed issue with NT namespace virtualization [#2701](https://github.com/sandboxie-plus/Sandboxie/issues/2701) - fixed issue with run unsandboxed [#2710](https://github.com/sandboxie-plus/Sandboxie/issues/2710) +- fixed issue with new box wizard [#2729](https://github.com/sandboxie-plus/Sandboxie/issues/2729) diff --git a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp index 2c316ef4..ad02c130 100644 --- a/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp +++ b/SandboxiePlus/SandMan/Wizards/NewBoxWizard.cpp @@ -109,9 +109,9 @@ SB_STATUS CNewBoxWizard::TryToCreateBox() pBox->SetBool("AutoRecover", true); if (field("blockNetwork").toInt() == 1) // old style - pBox->InsertText("AllowNetworkAccess", "!,n"); - else if (field("blockNetwork").toInt() == 2) // WFP pBox->InsertText("ClosedFilePath", "!,InternetAccessDevices"); + else if (field("blockNetwork").toInt() == 2) // WFP + pBox->InsertText("AllowNetworkAccess", "!,n"); pBox->SetBool("BlockNetworkFiles", !field("shareAccess").toBool()); if(field("fakeAdmin").toBool())