diff options
-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:
|