Ally Show Desktop / Mic Mute

This commit is contained in:
Serge
2024-01-21 13:38:26 +01:00
parent 72dea26fde
commit a3fd1a2703
2 changed files with 8 additions and 3 deletions

View File

@@ -100,6 +100,7 @@ namespace GHelper.Ally
public const string BindPrintScrn = "02-C3"; public const string BindPrintScrn = "02-C3";
public const string BindScreenshot = "04-03-82-88-1B"; public const string BindScreenshot = "04-03-82-88-1B";
public const string BindShowDesktop = "04-02-82-23";
public const string BindShowKeyboard = "05-19"; public const string BindShowKeyboard = "05-19";
@@ -143,6 +144,7 @@ namespace GHelper.Ally
{ BindBrightnessDown, "Bright Down" }, { BindBrightnessDown, "Bright Down" },
{ BindShowKeyboard, "Show Keyboard" }, { BindShowKeyboard, "Show Keyboard" },
{ BindShowDesktop, "Show Desktop" },
{ BindScreenshot, "Screenshot" }, { BindScreenshot, "Screenshot" },
{ BindOverlay, "AMD Overlay" }, { BindOverlay, "AMD Overlay" },
@@ -261,8 +263,8 @@ namespace GHelper.Ally
{ "03-05", "Mouse scroll down" }, { "03-05", "Mouse scroll down" },
//{ "05-16", "Screenshot" }, //{ "05-16", "Screenshot" },
//{ "05-1C", "Show desktop" },
{ "05-1C", "Show desktop" },
{ "05-1E", "Begin recording" }, { "05-1E", "Begin recording" },
{ "05-01", "Mic off" }, { "05-01", "Mic off" },
@@ -402,7 +404,7 @@ namespace GHelper.Ally
KeyL1 = AppConfig.GetString("bind_du", desktop ? BindKBU : BindDU); KeyL1 = AppConfig.GetString("bind_du", desktop ? BindKBU : BindDU);
KeyR1 = AppConfig.GetString("bind_dd", desktop ? BindKBD : BindDD); KeyR1 = AppConfig.GetString("bind_dd", desktop ? BindKBD : BindDD);
KeyL2 = AppConfig.GetString("bind2_du", BindShowKeyboard); KeyL2 = AppConfig.GetString("bind2_du", BindShowKeyboard);
KeyR2 = AppConfig.GetString("bind2_dd", BindAltTab); KeyR2 = AppConfig.GetString("bind2_dd", BindShowDesktop);
break; break;
case BindingZone.DPadLeftRight: case BindingZone.DPadLeftRight:
KeyL1 = AppConfig.GetString("bind_dl", desktop ? BindKBL : BindDL); KeyL1 = AppConfig.GetString("bind_dl", desktop ? BindKBL : BindDL);

View File

@@ -605,6 +605,9 @@ namespace GHelper.Input
case 162: case 162:
OnScreenKeyboard.Show(); OnScreenKeyboard.Show();
return; return;
case 124:
KeyProcess("m3");
return;
} }
} }