This commit is contained in:
DavidXanatos 2022-05-01 10:44:28 +02:00
parent af22cf9aef
commit 3d3bf7d8cc
3 changed files with 10 additions and 2 deletions

View File

@ -13,6 +13,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed issue with video playback in firefox introduced in the previouse build [#1831](https://github.com/sandboxie-plus/Sandboxie/issues/1831)
- fixed BSOD issue with driver [#1811](https://github.com/sandboxie-plus/Sandboxie/issues/1811)
- fixed issue with editing start restriction entries
- fixed issue with netwirk options tab [#1825](https://github.com/sandboxie-plus/Sandboxie/issues/1825)

View File

@ -266,6 +266,9 @@ void COptionsWindow::CloseINetEdit(QTreeWidgetItem* pItem, bool bSave)
void COptionsWindow::OnBlockINet()
{
if (m_HoldChange)
return;
//bool Enable = ui.chkBlockINet->isChecked();
int Mode = ui.cmbBlockINet->currentData().toInt();

View File

@ -407,6 +407,8 @@ void COptionsWindow::LoadConfig()
{
m_ConfigDirty = false;
m_HoldChange = true;
LoadGeneral();
LoadGroups();
@ -431,6 +433,8 @@ void COptionsWindow::LoadConfig()
LoadTemplates();
UpdateBoxType();
m_HoldChange = false;
}
void COptionsWindow::WriteAdvancedCheck(QCheckBox* pCheck, const QString& Name, const QString& Value)
@ -682,8 +686,6 @@ void COptionsWindow::UpdateCurrentTab()
CheckINetBlock();
LoadBlockINet();
OnBlockINet();
}
else if (ui.tabs->currentWidget() == ui.tabAdvanced)
{