1.0.20
This commit is contained in:
parent
af22cf9aef
commit
3d3bf7d8cc
|
@ -13,6 +13,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- fixed issue with video playback in firefox introduced in the previouse build [#1831](https://github.com/sandboxie-plus/Sandboxie/issues/1831)
|
- 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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -266,6 +266,9 @@ void COptionsWindow::CloseINetEdit(QTreeWidgetItem* pItem, bool bSave)
|
||||||
|
|
||||||
void COptionsWindow::OnBlockINet()
|
void COptionsWindow::OnBlockINet()
|
||||||
{
|
{
|
||||||
|
if (m_HoldChange)
|
||||||
|
return;
|
||||||
|
|
||||||
//bool Enable = ui.chkBlockINet->isChecked();
|
//bool Enable = ui.chkBlockINet->isChecked();
|
||||||
|
|
||||||
int Mode = ui.cmbBlockINet->currentData().toInt();
|
int Mode = ui.cmbBlockINet->currentData().toInt();
|
||||||
|
|
|
@ -407,6 +407,8 @@ void COptionsWindow::LoadConfig()
|
||||||
{
|
{
|
||||||
m_ConfigDirty = false;
|
m_ConfigDirty = false;
|
||||||
|
|
||||||
|
m_HoldChange = true;
|
||||||
|
|
||||||
LoadGeneral();
|
LoadGeneral();
|
||||||
|
|
||||||
LoadGroups();
|
LoadGroups();
|
||||||
|
@ -431,6 +433,8 @@ void COptionsWindow::LoadConfig()
|
||||||
LoadTemplates();
|
LoadTemplates();
|
||||||
|
|
||||||
UpdateBoxType();
|
UpdateBoxType();
|
||||||
|
|
||||||
|
m_HoldChange = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void COptionsWindow::WriteAdvancedCheck(QCheckBox* pCheck, const QString& Name, const QString& Value)
|
void COptionsWindow::WriteAdvancedCheck(QCheckBox* pCheck, const QString& Name, const QString& Value)
|
||||||
|
@ -682,8 +686,6 @@ void COptionsWindow::UpdateCurrentTab()
|
||||||
CheckINetBlock();
|
CheckINetBlock();
|
||||||
|
|
||||||
LoadBlockINet();
|
LoadBlockINet();
|
||||||
|
|
||||||
OnBlockINet();
|
|
||||||
}
|
}
|
||||||
else if (ui.tabs->currentWidget() == ui.tabAdvanced)
|
else if (ui.tabs->currentWidget() == ui.tabAdvanced)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue