1.15.4
This commit is contained in:
parent
893d9251cb
commit
1481c93d70
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -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())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue