diff options
Diffstat (limited to 'plugins/TabSRMM/src/containeroptions.cpp')
| -rw-r--r-- | plugins/TabSRMM/src/containeroptions.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/src/containeroptions.cpp b/plugins/TabSRMM/src/containeroptions.cpp index ee98bcbc75..c2647e7762 100644 --- a/plugins/TabSRMM/src/containeroptions.cpp +++ b/plugins/TabSRMM/src/containeroptions.cpp @@ -359,7 +359,7 @@ INT_PTR CALLBACK DlgProcContainerOptions(HWND hwndDlg, UINT msg, WPARAM wParam,  					Utils::SettingsToContainer(pContainer);
 -					if (!IsDlgButtonChecked(hwndDlg, IDC_CNTPRIVATE)) {
 +					if (BST_UNCHECKED == IsDlgButtonChecked(hwndDlg, IDC_CNTPRIVATE)) {
  						ReloadGlobalContainerSettings(true);
  						::db_set_blob(0, SRMSGMOD_T, CNT_KEYNAME, &PluginConfig.globalContainerSettings, sizeof(TContainerSettings));
  					}
 @@ -453,9 +453,9 @@ do_apply:  				SendDlgItemMessage(hwndDlg, IDC_TABMODE, CB_SETCURSEL, dwFlagsEx & TCF_SBARLEFT ? 2 : 3, 0);
  			if (LOBYTE(LOWORD(GetVersion())) >= 5 && fAllowTrans)
 -				CheckDlgButton(hwndDlg, IDC_TRANSPARENCY, dwFlags & CNT_TRANSPARENCY);
 +				CheckDlgButton(hwndDlg, IDC_TRANSPARENCY, dwFlags & CNT_TRANSPARENCY ? BST_CHECKED : BST_UNCHECKED);
  			else
 -				CheckDlgButton(hwndDlg, IDC_TRANSPARENCY, FALSE);
 +				CheckDlgButton(hwndDlg, IDC_TRANSPARENCY, BST_UNCHECKED);
  			Utils::enableDlgControl(hwndDlg, IDC_TRANSPARENCY, PluginConfig.m_WinVerMajor >= 5 && fAllowTrans ? TRUE : FALSE);
  | 
