diff --git a/app/Ally/AllyControl.cs b/app/Ally/AllyControl.cs index 170e4aff..d22d64ba 100644 --- a/app/Ally/AllyControl.cs +++ b/app/Ally/AllyControl.cs @@ -100,6 +100,7 @@ namespace GHelper.Ally public const string BindPrintScrn = "02-C3"; public const string BindScreenshot = "04-03-82-88-1B"; + public const string BindShowDesktop = "04-02-82-23"; public const string BindShowKeyboard = "05-19"; @@ -143,6 +144,7 @@ namespace GHelper.Ally { BindBrightnessDown, "Bright Down" }, { BindShowKeyboard, "Show Keyboard" }, + { BindShowDesktop, "Show Desktop" }, { BindScreenshot, "Screenshot" }, { BindOverlay, "AMD Overlay" }, @@ -261,8 +263,8 @@ namespace GHelper.Ally { "03-05", "Mouse scroll down" }, //{ "05-16", "Screenshot" }, - - { "05-1C", "Show desktop" }, + //{ "05-1C", "Show desktop" }, + { "05-1E", "Begin recording" }, { "05-01", "Mic off" }, @@ -402,7 +404,7 @@ namespace GHelper.Ally KeyL1 = AppConfig.GetString("bind_du", desktop ? BindKBU : BindDU); KeyR1 = AppConfig.GetString("bind_dd", desktop ? BindKBD : BindDD); KeyL2 = AppConfig.GetString("bind2_du", BindShowKeyboard); - KeyR2 = AppConfig.GetString("bind2_dd", BindAltTab); + KeyR2 = AppConfig.GetString("bind2_dd", BindShowDesktop); break; case BindingZone.DPadLeftRight: KeyL1 = AppConfig.GetString("bind_dl", desktop ? BindKBL : BindDL); diff --git a/app/Input/InputDispatcher.cs b/app/Input/InputDispatcher.cs index 5792dca8..9c69a977 100644 --- a/app/Input/InputDispatcher.cs +++ b/app/Input/InputDispatcher.cs @@ -605,6 +605,9 @@ namespace GHelper.Input case 162: OnScreenKeyboard.Show(); return; + case 124: + KeyProcess("m3"); + return; } }