This commit is contained in:
DavidXanatos 2024-11-30 12:55:38 +01:00
parent 893d9251cb
commit 1481c93d70
2 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### ###
- Fixed issues with ini section editor in dark mode - Fixed issues with ini section editor in dark mode
- Fix deleting sandbox content [#4407](https://github.com/sandboxie-plus/Sandboxie/pull/4407) - Fix deleting sandbox content [#4407](https://github.com/sandboxie-plus/Sandboxie/pull/4407)
- Fixed run unsandboxed no longer working from box picker window

View File

@ -247,6 +247,8 @@ void CSelectBoxWindow::OnRun()
{ {
if (QMessageBox("Sandboxie-Plus", tr("Are you sure you want to run the program outside the sandbox?"), QMessageBox::Question, QMessageBox::Yes, QMessageBox::No | QMessageBox::Default | QMessageBox::Escape, QMessageBox::NoButton, this).exec() != QMessageBox::Yes) if (QMessageBox("Sandboxie-Plus", tr("Are you sure you want to run the program outside the sandbox?"), QMessageBox::Question, QMessageBox::Yes, QMessageBox::No | QMessageBox::Default | QMessageBox::Escape, QMessageBox::NoButton, this).exec() != QMessageBox::Yes)
return; return;
BoxNames.append("");
} }
if (ui.radBoxedNew->isChecked()) if (ui.radBoxedNew->isChecked())
{ {