diff options
author | George Hazan <ghazan@miranda.im> | 2018-09-02 20:30:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-09-02 20:30:46 +0300 |
commit | a1edd77afc2b3ae486eb1dfaef2d4c69bb9d9006 (patch) | |
tree | 2ec1fc24e8f16893f039e24d2f4e18969fef96cb /src/mir_app | |
parent | 28a99f693df34c9c789bf5181893589bab9e1b1b (diff) |
fixes #1574 (newly activated account's options aren't displayed when you click on a checkbox in the Account Manager)
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/proto_opts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/proto_opts.cpp b/src/mir_app/src/proto_opts.cpp index a6bf6a8ca7..7eaa91cc69 100644 --- a/src/mir_app/src/proto_opts.cpp +++ b/src/mir_app/src/proto_opts.cpp @@ -466,7 +466,7 @@ public: WriteDbAccounts();
NotifyEventHooks(hAccListChanged, PRAC_CHECKED, (LPARAM)pa);
UpdateAccountInfo();
- RedrawWindow(m_accList.GetHwnd(), nullptr, nullptr, RDW_INVALIDATE);
+ SelectItem(m_accList.GetCurSel());
}
void OnOk(CCtrlButton*)
|