mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Removed unsuported hotkeys for ARCNM https://github.com/seerge/g-helper/issues/1341
This commit is contained in:
@@ -271,7 +271,7 @@ public static class AppConfig
|
|||||||
|
|
||||||
public static bool NoMKeys()
|
public static bool NoMKeys()
|
||||||
{
|
{
|
||||||
return ContainsModel("Z13") ||
|
return (ContainsModel("Z13") && !IsARCNM()) ||
|
||||||
ContainsModel("FX706") ||
|
ContainsModel("FX706") ||
|
||||||
ContainsModel("FA506") ||
|
ContainsModel("FA506") ||
|
||||||
ContainsModel("FX506") ||
|
ContainsModel("FX506") ||
|
||||||
@@ -279,6 +279,11 @@ public static class AppConfig
|
|||||||
ContainsModel("FX505");
|
ContainsModel("FX505");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static bool IsARCNM()
|
||||||
|
{
|
||||||
|
return ContainsModel("GZ301VIC");
|
||||||
|
}
|
||||||
|
|
||||||
public static bool IsTUF()
|
public static bool IsTUF()
|
||||||
{
|
{
|
||||||
return ContainsModel("TUF");
|
return ContainsModel("TUF");
|
||||||
|
|||||||
@@ -137,6 +137,15 @@ namespace GHelper
|
|||||||
customActions.Add("screenpad_up", Properties.Strings.ScreenPadUp);
|
customActions.Add("screenpad_up", Properties.Strings.ScreenPadUp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (AppConfig.IsARCNM())
|
||||||
|
{
|
||||||
|
labelM3.Text = "FN+F6";
|
||||||
|
labelM1.Visible = comboM1.Visible = textM1.Visible = false;
|
||||||
|
labelM2.Visible = comboM2.Visible = textM2.Visible = false;
|
||||||
|
labelM4.Visible = comboM4.Visible = textM4.Visible = false;
|
||||||
|
labelFNF4.Visible = comboFNF4.Visible = textFNF4.Visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
if (AppConfig.NoMKeys())
|
if (AppConfig.NoMKeys())
|
||||||
{
|
{
|
||||||
labelM1.Text = "FN+F2";
|
labelM1.Text = "FN+F2";
|
||||||
|
|||||||
Reference in New Issue
Block a user