From cf40d58fc67206ba511fb7f5600594356d0ba7ab Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Sun, 28 Jul 2024 16:16:07 +0200 Subject: [PATCH] 1.15.6 --- CHANGELOG.md | 1 + SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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);