mirror of https://github.com/2dust/v2rayN
fix rules setting key
parent
b7f40e4cbf
commit
0995ac6f9a
|
@ -75,15 +75,15 @@ namespace v2rayN.Views
|
||||||
{
|
{
|
||||||
ViewModel?.MoveRule(EMove.Top);
|
ViewModel?.MoveRule(EMove.Top);
|
||||||
}
|
}
|
||||||
else if (e.Key == Key.B)
|
else if (e.Key == Key.U)
|
||||||
{
|
{
|
||||||
ViewModel?.MoveRule(EMove.Up);
|
ViewModel?.MoveRule(EMove.Up);
|
||||||
}
|
}
|
||||||
else if (e.Key == Key.U)
|
else if (e.Key == Key.D)
|
||||||
{
|
{
|
||||||
ViewModel?.MoveRule(EMove.Down);
|
ViewModel?.MoveRule(EMove.Down);
|
||||||
}
|
}
|
||||||
else if (e.Key == Key.D)
|
else if (e.Key == Key.B)
|
||||||
{
|
{
|
||||||
ViewModel?.MoveRule(EMove.Bottom);
|
ViewModel?.MoveRule(EMove.Bottom);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue