From df5bdfde33f130ca148ef9190a41a9922ab3b8c7 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sat, 9 Nov 2024 10:55:27 +0100 Subject: [PATCH] Micmute binding for any key https://github.com/seerge/g-helper/issues/3352 --- app/Extra.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Extra.cs b/app/Extra.cs index f80b844a..eada31e1 100644 --- a/app/Extra.cs +++ b/app/Extra.cs @@ -37,6 +37,7 @@ namespace GHelper {"brightness_up", Properties.Strings.BrightnessUp}, {"visual", Properties.Strings.VisualMode}, {"touchscreen", Properties.Strings.ToggleTouchscreen }, + {"micmute", Properties.Strings.MuteMic}, {"ghelper", Properties.Strings.OpenGHelper}, {"custom", Properties.Strings.Custom} }; @@ -62,6 +63,7 @@ namespace GHelper break; case "m3": customActions[""] = Properties.Strings.MuteMic; + customActions.Remove("micmute"); break; case "m4": customActions[""] = Properties.Strings.OpenGHelper;