This commit is contained in:
DavidXanatos 2023-01-28 17:14:43 +01:00
parent ba4293734e
commit 1323ee1d19
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issue with NtQueryDirectoryFile data alignment [#2443](https://github.com/sandboxie-plus/Sandboxie/issues/2443) - fixed issue with NtQueryDirectoryFile data alignment [#2443](https://github.com/sandboxie-plus/Sandboxie/issues/2443)
- fixed issue with firefox 111 dev build [#2631](https://github.com/sandboxie-plus/Sandboxie/issues/2631) - fixed issue with firefox 111 dev build [#2631](https://github.com/sandboxie-plus/Sandboxie/issues/2631)
- fixed issue with mio sockets [#2617](https://github.com/sandboxie-plus/Sandboxie/issues/2617) - fixed issue with mio sockets [#2617](https://github.com/sandboxie-plus/Sandboxie/issues/2617)
- fixed issue with run menu entries created from the options/settings window [#2610](https://github.com/sandboxie-plus/Sandboxie/issues/2610)

View File

@ -873,7 +873,7 @@ void COptionsWindow::OnBrowsePath()
if (Name.isEmpty()) if (Name.isEmpty())
return; return;
AddRunItem(Name, Value); AddRunItem(Name, "\"" + Value + "\"");
m_GeneralChanged = true; m_GeneralChanged = true;
OnOptChanged(); OnOptChanged();
} }

View File

@ -469,7 +469,7 @@ void CSettingsWindow::OnBrowsePath()
if (Name.isEmpty()) if (Name.isEmpty())
return; return;
AddRunItem(Name, Value); AddRunItem(Name, "\"" + Value + "\"");
} }
void CSettingsWindow::OnAddCommand() void CSettingsWindow::OnAddCommand()