From f51c81a42180cc02619ee2920090a8cd5314db49 Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Fri, 24 May 2024 23:28:18 +0200 Subject: [PATCH] fix --- SandboxiePlus/SandMan/Windows/SettingsWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp index 49711dc1..91700bd7 100644 --- a/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp +++ b/SandboxiePlus/SandMan/Windows/SettingsWindow.cpp @@ -425,6 +425,7 @@ CSettingsWindow::CSettingsWindow(QWidget* parent) m_FeaturesChanged = false; connect(ui.chkWin32k, SIGNAL(stateChanged(int)), this, SLOT(OnGeneralChanged())); connect(ui.chkSbieLogon, SIGNAL(stateChanged(int)), this, SLOT(OnGeneralChanged())); + connect(ui.chkSbieAll, SIGNAL(stateChanged(int)), this, SLOT(OnGeneralChanged())); m_GeneralChanged = false; connect(ui.chkWatchConfig, SIGNAL(stateChanged(int)), this, SLOT(OnOptChanged())); // not sbie ini @@ -1059,6 +1060,7 @@ void CSettingsWindow::LoadSettings() ui.chkObjCb->setEnabled(false); ui.chkWin32k->setEnabled(false); ui.chkSbieLogon->setEnabled(false); + ui.chkSbieAll->setEnabled(false); ui.regRoot->setEnabled(false); ui.ipcRoot->setEnabled(false); ui.chkRamDisk->setEnabled(false);