diff --git a/v2rayN/v2rayN/Sample/tun_singbox b/v2rayN/v2rayN/Sample/tun_singbox index c9b2c70c..1710b0e3 100644 --- a/v2rayN/v2rayN/Sample/tun_singbox +++ b/v2rayN/v2rayN/Sample/tun_singbox @@ -17,7 +17,6 @@ "auto_route": true, "strict_route": $strict_route$, "stack": "$stack$", - "endpoint_independent_nat": true, "sniff": true } ], diff --git a/v2rayN/v2rayN/Sample/tun_singbox_inbound b/v2rayN/v2rayN/Sample/tun_singbox_inbound index 845ea137..637d24f4 100644 --- a/v2rayN/v2rayN/Sample/tun_singbox_inbound +++ b/v2rayN/v2rayN/Sample/tun_singbox_inbound @@ -7,6 +7,5 @@ "auto_route":true, "strict_route":false, "stack":"system", - "endpoint_independent_nat":true, "sniff":true } \ No newline at end of file diff --git a/v2rayN/v2rayN/Views/MainWindow.xaml.cs b/v2rayN/v2rayN/Views/MainWindow.xaml.cs index 67e2e5c5..4f3df39e 100644 --- a/v2rayN/v2rayN/Views/MainWindow.xaml.cs +++ b/v2rayN/v2rayN/Views/MainWindow.xaml.cs @@ -252,12 +252,7 @@ namespace v2rayN.Views private void LstProfiles_LoadingRow(object? sender, DataGridRowEventArgs e) { - //if (e.Row.GetIndex() == 0) - //{ - // lstProfiles.Focus(); - //} - - e.Row.Header = e.Row.GetIndex() + 1; + e.Row.Header = $" {e.Row.GetIndex() + 1}"; } private void LstProfiles_MouseDoubleClick(object sender, MouseButtonEventArgs e) diff --git a/v2rayN/v2rayN/Views/RoutingSettingWindow.xaml b/v2rayN/v2rayN/Views/RoutingSettingWindow.xaml index 0b2566c8..efbb4c65 100644 --- a/v2rayN/v2rayN/Views/RoutingSettingWindow.xaml +++ b/v2rayN/v2rayN/Views/RoutingSettingWindow.xaml @@ -163,6 +163,7 @@