diff options
author | George Hazan <ghazan@miranda.im> | 2020-07-24 14:58:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-07-24 14:58:46 +0300 |
commit | d324dd5bc0b5afcf07156eaa2ad05acf2f8066ee (patch) | |
tree | a6ce4c17235909d8a7d796eecf5824b23b14f8b5 | |
parent | 188f87a84cfd948df8571594bac4e474602221cc (diff) |
fixes #2500 ("Load server history" menu item may be occasionally hidden)
-rw-r--r-- | src/mir_app/src/proto_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/proto_interface.cpp b/src/mir_app/src/proto_interface.cpp index 1cc874c05f..dc23454780 100644 --- a/src/mir_app/src/proto_interface.cpp +++ b/src/mir_app/src/proto_interface.cpp @@ -304,7 +304,7 @@ static int __cdecl ProtoPrebuildContactMenu(WPARAM hContact, LPARAM) Menu_ShowItem(hRevokeAuth, false); const char *szProto = Proto_GetBaseAccountName(hContact); - Menu_ShowItem(hRevokeAuth, ProtoServiceExists(szProto, PS_MENU_LOADHISTORY)); + Menu_ShowItem(hServerHist, ProtoServiceExists(szProto, PS_MENU_LOADHISTORY)); return 0; } |