diff --git a/CHANGELOG.md b/CHANGELOG.md index dc067250..0051992b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - fixed issue with Windows 7 caused by the new CustomLCID option [#4117](https://github.com/sandboxie-plus/Sandboxie/issues/4117) +- fixed Settings Window issue with non advanced certificates introduced in 1.14.0 ### Added - added alias for a sandbox [#4112](https://github.com/sandboxie-plus/Sandboxie/issues/4112) diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp index 2f2f41df..b4692b3c 100644 --- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp +++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp @@ -1152,7 +1152,7 @@ void CSettingsWindow::OnRamDiskChange() { if (sender() == ui.chkRamDisk) { if (ui.chkRamDisk->isChecked()) - theGUI->CheckCertificate(this, 2); + theGUI->CheckCertificate(this); } if (ui.chkRamDisk->isChecked() && ui.txtRamLimit->text().isEmpty()) @@ -1175,7 +1175,7 @@ void CSettingsWindow::OnVolumeChanged() { if (sender() == ui.chkSandboxUsb) { if (ui.chkSandboxUsb->isChecked()) - theGUI->CheckCertificate(this, 2); + theGUI->CheckCertificate(this); } ui.cmbUsbSandbox->setEnabled(ui.chkSandboxUsb->isChecked() && g_CertInfo.active);