Keybinding fix

This commit is contained in:
Serge
2023-05-25 13:30:33 +02:00
parent f36fb6ca55
commit 47d96aca61
2 changed files with 11 additions and 3 deletions

View File

@@ -272,6 +272,7 @@ namespace GHelper
Program.settingsForm.BeginInvoke(Program.settingsForm.CyclePerformanceMode);
return;
case 179: // FN+F4
case 178: // FN+F4
KeyProcess("fnf4");
return;
case 189: // Tablet mode
@@ -327,11 +328,11 @@ namespace GHelper
static void LaunchProcess(string command = "")
{
string executable = command.Split(' ')[0];
string arguments = command.Substring(executable.Length).Trim();
try
{
string executable = command.Split(' ')[0];
string arguments = command.Substring(executable.Length).Trim();
Process proc = Process.Start(executable, arguments);
}
catch

View File

@@ -199,7 +199,14 @@ namespace GHelper
break;
}
base.WndProc(ref m);
try
{
base.WndProc(ref m);
} catch (Exception ex)
{
Debug.WriteLine(ex.ToString());
}
}
public void RunToast(string text, ToastIcon? icon = null)