1.15.6
This commit is contained in:
parent
230ebf094b
commit
cf40d58fc6
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue