diff options
author | George Hazan <ghazan@miranda.im> | 2021-07-18 15:10:31 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-07-18 15:10:31 +0300 |
commit | 8034c653fa161e64337029b7e94c480829269c14 (patch) | |
tree | 9104a824ec010271b2cf7bfec08761f61737dc4f /protocols/ICQ-WIM/src/options.cpp | |
parent | 79aeffd07b1211308c5f80150837aff3523fe936 (diff) |
fixes #2939 (MRA: cannot login to MRA by phone/sms, if phone connected to MRA account and ICQ account at the same time)
Diffstat (limited to 'protocols/ICQ-WIM/src/options.cpp')
-rw-r--r-- | protocols/ICQ-WIM/src/options.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/ICQ-WIM/src/options.cpp b/protocols/ICQ-WIM/src/options.cpp index 3191a92164..4775fed3f3 100644 --- a/protocols/ICQ-WIM/src/options.cpp +++ b/protocols/ICQ-WIM/src/options.cpp @@ -246,6 +246,9 @@ public: bool OnInitDialog() override { + if (m_proto->m_isMra) + btnCreate.Hide(); + wszOldPass = m_proto->getMStringW("Password"); edtPassword.SetText(wszOldPass); return true; |