fix rules setting key

pull/3165/head
2dust 2023-01-30 12:27:41 +08:00
parent b7f40e4cbf
commit 0995ac6f9a
1 changed files with 3 additions and 3 deletions

View File

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