Set FN+V to change Visual Modes by default

This commit is contained in:
Serge
2024-09-17 18:05:18 +02:00
parent 5e51511df0
commit 6758d9224d
2 changed files with 4 additions and 1 deletions

View File

@@ -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";

View File

@@ -511,6 +511,8 @@ namespace GHelper.Input
action = "micmute";
if (name == "fnc")
action = "fnlock";
if (name == "fnv")
action = "visual";
if (name == "fne")
action = "calculator";
}