Skip to content

Commit

Permalink
DestroyMenu
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed Apr 3, 2024
1 parent 15dbce2 commit 9b69f99
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7360,7 +7360,7 @@ void MainWnd_OnNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh) noexcept
}

if (pnmh->code == NM_RCLICK && (idCtrl == IDW_TOOLBAR || idCtrl == IDW_STATUSBAR)) {
// ツールバーが右クリックされた。右クリックメニューを表示する。
// ツールバーかステータスバーが右クリックされた。右クリックメニューを表示する。

// メニューを読み込む。
HMENU hMenu = ::LoadMenuW(xg_hInstance, MAKEINTRESOURCEW(2));
Expand All @@ -7378,6 +7378,7 @@ void MainWnd_OnNotify(HWND hwnd, int idCtrl, LPNMHDR pnmh) noexcept
hwnd, NULL);

// TrackPopupMenuの後片づけ。
::DestroyMenu(hMenu);
::PostMessageW(hwnd, WM_NULL, 0, 0);
return;
}
Expand Down

0 comments on commit 9b69f99

Please sign in to comment.