From 480b51b274ed3b427b99cc9cbaad3c7ff6548d0b Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 22 Mar 2023 13:28:39 +1000 Subject: [PATCH] Add keybind (hardcoded) for MainForm context menu --- src/BizHawk.Client.EmuHawk/MainForm.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/BizHawk.Client.EmuHawk/MainForm.cs b/src/BizHawk.Client.EmuHawk/MainForm.cs index b78395232d..a93cf5a864 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.cs @@ -1124,6 +1124,12 @@ namespace BizHawk.Client.EmuHawk } // ordinarily, an alt release with nothing else would move focus to the MenuBar. but that is sort of useless, and hard to implement exactly right. + + if (Config.ShowContextMenu && ie.ToString() == "Press:Apps" && ContainsFocus) + { + // same as right-click + MainFormContextMenu.Show(PointToScreen(new(0, MainformMenu.Height))); + } } // zero 09-sep-2012 - all input is eligible for controller input. not sure why the above was done.