1.8.1
This commit is contained in:
parent
c3b7306ed1
commit
493ce990aa
|
@ -17,6 +17,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
- fixed issue with run unsandboxed [#2710](https://github.com/sandboxie-plus/Sandboxie/issues/2710)
|
||||
- fixed issue with new box wizard [#2729](https://github.com/sandboxie-plus/Sandboxie/issues/2729)
|
||||
- fixed issue with break out processes and user restricted sandboxes [#2732](https://github.com/sandboxie-plus/Sandboxie/issues/2732)
|
||||
- fixed a couple UI issues [#2733](https://github.com/sandboxie-plus/Sandboxie/issues/2733)
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -976,6 +976,9 @@ void COptionsWindow::OnDelUser()
|
|||
{
|
||||
foreach(QListWidgetItem* pItem, ui.lstUsers->selectedItems())
|
||||
delete pItem;
|
||||
|
||||
m_AdvancedChanged = true;
|
||||
OnOptChanged();
|
||||
}
|
||||
|
||||
void COptionsWindow::CreateDebug()
|
||||
|
|
|
@ -372,12 +372,23 @@ void COptionsWindow::SaveGeneral()
|
|||
|
||||
if (ui.cmbVersion->isEnabled())
|
||||
{
|
||||
if (ui.cmbVersion->currentIndex() == 1) { // V2
|
||||
if (ui.cmbVersion->currentIndex() == 1) // V2
|
||||
{
|
||||
m_pBox->SetBool("UseFileDeleteV2", true);
|
||||
m_pBox->SetBool("UseRegDeleteV2", true);
|
||||
}
|
||||
else if (ui.cmbVersion->currentIndex() == 0) { // V1
|
||||
else if (ui.cmbVersion->currentIndex() == 0) // V1
|
||||
{
|
||||
bool bUseFileDeleteV2Global = theAPI->GetGlobalSettings()->GetBool("UseFileDeleteV2", false);
|
||||
if(bUseFileDeleteV2Global)
|
||||
m_pBox->SetBool("UseFileDeleteV2", false);
|
||||
else
|
||||
m_pBox->DelValue("UseFileDeleteV2");
|
||||
|
||||
bool bUseRegDeleteV2Global = theAPI->GetGlobalSettings()->GetBool("UseRegDeleteV2", false);
|
||||
if(bUseRegDeleteV2Global)
|
||||
m_pBox->SetBool("UseRegDeleteV2", false);
|
||||
else
|
||||
m_pBox->DelValue("UseRegDeleteV2");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue