diff options
author | George Hazan <ghazan@miranda.im> | 2019-05-24 21:24:00 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-05-24 21:24:00 +0300 |
commit | cc6ef9e37a548857baabd1011652e9af23787fb8 (patch) | |
tree | b69221a51df71b6e6f42a0762252d28812c0f2ee | |
parent | d782eaf66c6e77e44393e89c7d8df4416adafb9e (diff) |
SkypeWeb: length of id field increased
-rw-r--r-- | protocols/SkypeWeb/src/skype_options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_options.cpp b/protocols/SkypeWeb/src/skype_options.cpp index 00fd56b895..47ec198bb3 100644 --- a/protocols/SkypeWeb/src/skype_options.cpp +++ b/protocols/SkypeWeb/src/skype_options.cpp @@ -45,7 +45,7 @@ bool CSkypeOptionsMain::OnInitDialog() m_skypename.SetTextA(ptrA(m_proto->getStringA(SKYPE_SETTINGS_ID)));
m_password.SetTextA(pass_ptrA(m_proto->getStringA("Password")));
m_place.Enable(!m_proto->m_opts.bUseHostnameAsPlace);
- m_skypename.SendMsg(EM_LIMITTEXT, 32, 0);
+ m_skypename.SendMsg(EM_LIMITTEXT, 128, 0);
m_password.SendMsg(EM_LIMITTEXT, 128, 0);
m_group.SendMsg(EM_LIMITTEXT, 64, 0);
return true;
|