Merge pull request #4321 from hxdhttk/hxdhttk/keyDown

Fix that editing the basic routing settings will trigger unexpected error messages.
This commit is contained in:
2dust
2023-11-10 15:06:18 +08:00
committed by GitHub

View File

@@ -88,6 +88,11 @@ namespace v2rayN.Views
private void RoutingSettingWindow_PreviewKeyDown(object sender, KeyEventArgs e)
{
if (ViewModel?.enableRoutingBasic ?? false)
{
return;
}
if (Keyboard.IsKeyDown(Key.LeftCtrl) || Keyboard.IsKeyDown(Key.RightCtrl))
{
if (e.Key == Key.A)