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

@@ -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)