diff options
author | George Hazan <george.hazan@gmail.com> | 2024-06-19 19:21:28 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-06-19 19:21:28 +0300 |
commit | 82e75be329dd0f30c0281ef9c3c08488b89d109f (patch) | |
tree | 2f45dc6758dfe6e903045069bb170f7c61388d5c | |
parent | caea4f22113f6cdeff690051b78183aaab5879f9 (diff) |
StdUserInfo: fix for displaying groups
-rw-r--r-- | src/core/stduserinfo/src/userinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stduserinfo/src/userinfo.cpp b/src/core/stduserinfo/src/userinfo.cpp index 3ccc299225..c1233396ce 100644 --- a/src/core/stduserinfo/src/userinfo.cpp +++ b/src/core/stduserinfo/src/userinfo.cpp @@ -150,7 +150,7 @@ class CUserInfoDlg : public CDlgBase }
}
- if (hParent == nullptr || (!hContact && mir_wstrcmp(pwszPrevGroup, it->pwszGroup))) {
+ if (hParent == nullptr || mir_wstrcmp(pwszPrevGroup, it->pwszGroup)) {
TVINSERTSTRUCT tvis = {};
tvis.hInsertAfter = TVI_LAST;
tvis.item.lParam = (LPARAM)it;
|