diff options
author | George Hazan <ghazan@miranda.im> | 2023-03-07 12:28:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-03-07 12:28:46 +0300 |
commit | f9cdf7391b9510c73b5041e624d84dae093ffd0d (patch) | |
tree | 15bb2d35589d863dc55fa921db943f13169e1490 | |
parent | 927aa281dab3124d39f4e113ff96b62509e1114d (diff) |
fixes #3409 (Telegram: окно ввода пароля странно себя ведёт)
-rw-r--r-- | protocols/Telegram/src/auth.cpp | 2 | ||||
-rw-r--r-- | src/mir_app/src/enterstring.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/protocols/Telegram/src/auth.cpp b/protocols/Telegram/src/auth.cpp index 61f249dcd7..7084e12296 100644 --- a/protocols/Telegram/src/auth.cpp +++ b/protocols/Telegram/src/auth.cpp @@ -59,7 +59,7 @@ INT_PTR CALLBACK CTelegramProto::EnterPhoneCode(void *param) ENTER_STRING es = {};
es.szModuleName = ppro->m_szModuleName;
- es.caption = TranslateT("Enter the secret code sent to your Telegram on another device");
+ es.caption = TranslateT("Enter the secret code sent to another device");
if (EnterString(&es)) {
ppro->SendQuery(new TD::checkAuthenticationCode(T2Utf(es.ptszResult).get()), &CTelegramProto::OnUpdateAuth);
mir_free(es.ptszResult);
diff --git a/src/mir_app/src/enterstring.cpp b/src/mir_app/src/enterstring.cpp index 69897231c1..8bb3970d8e 100644 --- a/src/mir_app/src/enterstring.cpp +++ b/src/mir_app/src/enterstring.cpp @@ -222,6 +222,7 @@ public: int Resizer(UTILRESIZECONTROL *urc) override
{
switch (urc->wId) {
+ case IDC_TXT_SIMPLE:
case IDC_TXT_MULTILINE:
case IDC_TXT_COMBO:
case IDC_TXT_RICHEDIT:
|