Skip to content

Commit

Permalink
Fix SandMan Settings UI showing inverse of actual value for AutoRunSo…
Browse files Browse the repository at this point in the history
…ftCompat

Closes sandboxie-plus#1678
  • Loading branch information
mitchcapper committed Mar 12, 2022
1 parent fd83db5 commit eaac6e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SandboxiePlus/SandMan/Windows/SettingsWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ CSettingsWindow::CSettingsWindow(QWidget *parent)
connect(ui.btnDelCompat, SIGNAL(clicked(bool)), this, SLOT(OnDelCompat()));
m_CompatLoaded = 0;
m_CompatChanged = false;
ui.chkNoCompat->setChecked(theConf->GetBool("Options/AutoRunSoftCompat", true));
ui.chkNoCompat->setChecked(!theConf->GetBool("Options/AutoRunSoftCompat", true));

connect(ui.treeCompat, SIGNAL(itemClicked(QTreeWidgetItem*, int)), this, SLOT(OnTemplateClicked(QTreeWidgetItem*, int)));

Expand Down

0 comments on commit eaac6e4

Please sign in to comment.