diff options
author | George Hazan <ghazan@miranda.im> | 2016-11-13 20:36:49 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2016-11-13 20:36:49 +0300 |
commit | a2cedee6d5e03c56e8234ba1150727ce3857e638 (patch) | |
tree | fafe2a6b39a49c56b4f361cedd81ecb6388675d0 /plugins/Scriver/src | |
parent | 0726ffe2cca22eef7d8cd578df7ea8a56b130766 (diff) |
fix for built-in clist_modern in the typing notification options dialog
Diffstat (limited to 'plugins/Scriver/src')
-rw-r--r-- | plugins/Scriver/src/msgoptions.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/Scriver/src/msgoptions.cpp b/plugins/Scriver/src/msgoptions.cpp index e0f235e591..6beeab12ce 100644 --- a/plugins/Scriver/src/msgoptions.cpp +++ b/plugins/Scriver/src/msgoptions.cpp @@ -869,9 +869,10 @@ static INT_PTR CALLBACK DlgProcTypeOptions(HWND hwndDlg, UINT msg, WPARAM wParam cii.pszText = (wchar_t*)TranslateT("** Unknown contacts **");
hItemUnknown = (HANDLE)SendDlgItemMessage(hwndDlg, IDC_CLIST, CLM_ADDINFOITEM, 0, (LPARAM)&cii);
}
+
SetWindowLongPtr(GetDlgItem(hwndDlg, IDC_CLIST), GWL_STYLE, GetWindowLongPtr(GetDlgItem(hwndDlg, IDC_CLIST), GWL_STYLE) | CLS_SHOWHIDDEN | CLS_NOHIDEOFFLINE);
ResetCList(hwndDlg);
- RebuildList(hwndDlg, hItemNew, hItemUnknown);
+
CheckDlgButton(hwndDlg, IDC_SHOWNOTIFY, db_get_b(NULL, SRMMMOD, SRMSGSET_SHOWTYPING, SRMSGDEFSET_SHOWTYPING) ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_TYPEWIN, db_get_b(NULL, SRMMMOD, SRMSGSET_SHOWTYPINGWIN, SRMSGDEFSET_SHOWTYPINGWIN) ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_TYPETRAY, db_get_b(NULL, SRMMMOD, SRMSGSET_SHOWTYPINGNOWIN, SRMSGDEFSET_SHOWTYPINGNOWIN) ? BST_CHECKED : BST_UNCHECKED);
@@ -921,6 +922,9 @@ static INT_PTR CALLBACK DlgProcTypeOptions(HWND hwndDlg, UINT msg, WPARAM wParam case CLN_CHECKCHANGED:
MarkChanges(4, hwndDlg);
break;
+ case CLN_LISTREBUILT:
+ RebuildList(hwndDlg, hItemNew, hItemUnknown);
+ break;
}
break;
case 0:
|