From 0995ac6f9a484263845dea45e379f6137418bafe Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Mon, 30 Jan 2023 12:27:41 +0800 Subject: [PATCH] fix rules setting key --- v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs b/v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs index c7366eb6..791b450a 100644 --- a/v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs +++ b/v2rayN/v2rayN/Views/RoutingRuleSettingWindow.xaml.cs @@ -75,15 +75,15 @@ namespace v2rayN.Views { ViewModel?.MoveRule(EMove.Top); } - else if (e.Key == Key.B) + else if (e.Key == Key.U) { ViewModel?.MoveRule(EMove.Up); } - else if (e.Key == Key.U) + else if (e.Key == Key.D) { ViewModel?.MoveRule(EMove.Down); } - else if (e.Key == Key.D) + else if (e.Key == Key.B) { ViewModel?.MoveRule(EMove.Bottom); }