diff --git a/app/Extra.cs b/app/Extra.cs index 41e98563..83f20cc3 100644 --- a/app/Extra.cs +++ b/app/Extra.cs @@ -76,7 +76,8 @@ namespace GHelper customActions.Remove("fnlock"); break; case "fnv": - customActions[""] = EMPTY; + customActions[""] = Properties.Strings.VisualMode; + customActions.Remove("visual"); break; case "fne": customActions[""] = "Calculator"; diff --git a/app/Input/InputDispatcher.cs b/app/Input/InputDispatcher.cs index 89e2fa69..a0195509 100644 --- a/app/Input/InputDispatcher.cs +++ b/app/Input/InputDispatcher.cs @@ -511,6 +511,8 @@ namespace GHelper.Input action = "micmute"; if (name == "fnc") action = "fnlock"; + if (name == "fnv") + action = "visual"; if (name == "fne") action = "calculator"; }