summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2022-08-16 19:50:49 +0300
committerGeorge Hazan <ghazan@miranda.im>2022-08-16 19:50:49 +0300
commit2948d9339597f89a03d3f91a71b9732c3799b428 (patch)
treec89da32bd4072c6c36fb51f5b0cc55d73a81461b /protocols
parent6f0bfb5bc1dd9703130af0d65939bc9db839e58e (diff)
fixes #3159 (various quirks in the View/Change my details window)
Diffstat (limited to 'protocols')
-rw-r--r--protocols/JabberG/src/jabber_vcard.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_vcard.cpp b/protocols/JabberG/src/jabber_vcard.cpp
index d8ba73b3ca..57f4a4b28d 100644
--- a/protocols/JabberG/src/jabber_vcard.cpp
+++ b/protocols/JabberG/src/jabber_vcard.cpp
@@ -1051,8 +1051,9 @@ void CJabberProto::OnUserInfoInit_VCard(WPARAM wParam, LPARAM)
m_szPhotoFileName[0] = 0;
USERINFOPAGE uip = {};
- uip.flags = ODPF_UNICODE | ODPF_USERINFOTAB | ODPF_DONTTRANSLATE;
+ uip.flags = ODPF_UNICODE | ODPF_USERINFOTAB | ODPF_ICON;
uip.szGroup.w = m_tszUserName;
+ uip.dwInitParam = (LPARAM)Skin_GetProtoIcon(m_szModuleName, ID_STATUS_ONLINE);
uip.pDialog = new JabberVcardPersonalDlg(this);
uip.szTitle.w = LPGENW("General");