1.7.0c
This commit is contained in:
parent
ba4293734e
commit
1323ee1d19
|
@ -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 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 run menu entries created from the options/settings window [#2610](https://github.com/sandboxie-plus/Sandboxie/issues/2610)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -873,7 +873,7 @@ void COptionsWindow::OnBrowsePath()
|
|||
if (Name.isEmpty())
|
||||
return;
|
||||
|
||||
AddRunItem(Name, Value);
|
||||
AddRunItem(Name, "\"" + Value + "\"");
|
||||
m_GeneralChanged = true;
|
||||
OnOptChanged();
|
||||
}
|
||||
|
|
|
@ -469,7 +469,7 @@ void CSettingsWindow::OnBrowsePath()
|
|||
if (Name.isEmpty())
|
||||
return;
|
||||
|
||||
AddRunItem(Name, Value);
|
||||
AddRunItem(Name, "\"" + Value + "\"");
|
||||
}
|
||||
|
||||
void CSettingsWindow::OnAddCommand()
|
||||
|
|
Loading…
Reference in New Issue