diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-19 23:13:20 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-19 23:13:20 +0300 |
commit | 55db85ad3a5c31baff92864c4b01740333692595 (patch) | |
tree | 952041c1315f94b9ad8129d501fd76279ad33c71 /src/core | |
parent | c8063c72d4305016fb484718733093c8246ec1e6 (diff) |
fixes #1283 completely
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdmsg/src/msgdialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/stdmsg/src/msgdialog.cpp b/src/core/stdmsg/src/msgdialog.cpp index e179f4a978..2b22745d08 100644 --- a/src/core/stdmsg/src/msgdialog.cpp +++ b/src/core/stdmsg/src/msgdialog.cpp @@ -818,8 +818,9 @@ LRESULT CSrmmWindow::WndProc_Message(UINT msg, WPARAM wParam, LPARAM lParam) // Someone added items?
if (GetMenuItemCount(mwpd.hMenu) > 0) {
- SetCursor(LoadCursor(nullptr, IDC_ARROW));
+ m_bInMenu = true;
mwpd.selection = TrackPopupMenu(mwpd.hMenu, TPM_RETURNCMD, mwpd.pt.x, mwpd.pt.y, 0, m_message.GetHwnd(), nullptr);
+ m_bInMenu = false;
}
// Second notification
|