From a5ef58dbee8cfcac5081fce31d0d065889a97a99 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:37:52 +0100 Subject: [PATCH] Removed unsupported FN-V binding for TUF devices https://github.com/seerge/g-helper/issues/2221 --- app/Extra.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Extra.cs b/app/Extra.cs index 6fee7682..8bbd6a10 100644 --- a/app/Extra.cs +++ b/app/Extra.cs @@ -205,7 +205,11 @@ namespace GHelper labelFNF4.Visible = comboFNF4.Visible = textFNF4.Visible = false; } - if (!AppConfig.IsTUF()) + if (AppConfig.IsTUF()) + { + labelFNV.Visible = comboFNV.Visible = textFNV.Visible = false; + } + else { labelFNE.Visible = comboFNE.Visible = textFNE.Visible = false; }