This commit is contained in:
DavidXanatos 2024-01-06 17:52:22 +01:00
parent 9502cc9ff4
commit c87dd13349
2 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.12.7 / 5.67.7] - 2024-01-??
### Fixed
- Make Duplicate Box Config keep the order of the original box configuration [#3523](https://github.com/sandboxie-plus/Sandboxie/issues/3523)
## [1.12.6 / 5.67.6] - 2024-01-02
### Changed

View File

@ -1368,7 +1368,7 @@ void CSbieView::OnSandBoxAction(QAction* Action, const QList<CSandBoxPtr>& SandB
if (I->first == "FileRootPath" && !I->second.toUpper().contains("%SANDBOX%"))
continue; // skip the FileRootPath if it does not contain a %SANDBOX%
Status = theAPI->SbieIniSet(Name, I->first, I->second, CSbieAPI::eIniInsert, false);
Status = theAPI->SbieIniSet(Name, I->first, I->second, CSbieAPI::eIniAppend, false);
if (Status.IsError())
break;
}