1.11.2
This commit is contained in:
parent
b5c6ec1d50
commit
d82b62ee78
|
@ -21,6 +21,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
### Fixed
|
||||
- fixed subscription certificate recognition issue
|
||||
- fixed logo cut-off in the About window [#3249](https://github.com/sandboxie-plus/Sandboxie/issues/3249)
|
||||
- fixed issue with file recovery when using ramdisk
|
||||
|
||||
|
||||
## [1.11.1 / 5.66.1] - 2023-08-31
|
||||
|
|
|
@ -364,7 +364,7 @@ void CPopUpWindow::AddFileToRecover(const QString& FilePath, QString BoxPath, co
|
|||
if (BoxPath.isEmpty()) // legacy case, no BoxName, no support for driver serial numbers
|
||||
BoxPath = theAPI->GetBoxedPath(pBox->GetName(), FilePath);
|
||||
|
||||
CPopUpRecovery* pEntry = new CPopUpRecovery(Message, FilePath, BoxPath, pBox->GetName(), this);
|
||||
CPopUpRecovery* pEntry = new CPopUpRecovery(Message, FilePath, theAPI->GetBoxedPath(pBox.data(), FilePath), pBox->GetName(), this);
|
||||
|
||||
QStringList RecoverTargets = theAPI->GetUserSettings()->GetTextList("SbieCtrl_RecoverTarget", true);
|
||||
pEntry->m_pTarget->insertItems(pEntry->m_pTarget->count()-1, RecoverTargets);
|
||||
|
|
Loading…
Reference in New Issue