From 37cce2fa35dcb802de2c82b99cfd72e4244d9311 Mon Sep 17 00:00:00 2001 From: tt2563 <243264479+tt2563@users.noreply.github.com> Date: Sun, 7 Dec 2025 15:21:11 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=8Cdesktop=E7=89=88=E6=9C=AC=EF=BC=8D?= =?UTF-8?q?=E5=95=9F=E7=94=A8=E9=80=A3=E7=B7=9A=E8=B3=87=E8=A8=8A=E6=B8=AC?= =?UTF-8?q?=E8=A9=A6=E4=BD=8D=E5=9D=80=E8=87=AA=E8=A8=82=E8=BC=B8=E5=85=A5?= =?UTF-8?q?=E3=80=8D=20(#8456)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- v2rayN/v2rayN.Desktop/Views/OptionSettingWindow.axaml | 3 ++- v2rayN/v2rayN.Desktop/Views/OptionSettingWindow.axaml.cs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/v2rayN/v2rayN.Desktop/Views/OptionSettingWindow.axaml b/v2rayN/v2rayN.Desktop/Views/OptionSettingWindow.axaml index 90062951..36e87190 100644 --- a/v2rayN/v2rayN.Desktop/Views/OptionSettingWindow.axaml +++ b/v2rayN/v2rayN.Desktop/Views/OptionSettingWindow.axaml @@ -592,7 +592,8 @@ Grid.Row="20" Grid.Column="1" Width="300" - Margin="{StaticResource Margin4}" /> + Margin="{StaticResource Margin4}" + IsEditable="True" /> this.Bind(ViewModel, vm => vm.GeoFileSourceUrl, v => v.cmbGetFilesSourceUrl.SelectedValue).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.SrsFileSourceUrl, v => v.cmbSrsFilesSourceUrl.SelectedValue).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.RoutingRulesSourceUrl, v => v.cmbRoutingRulesSourceUrl.SelectedValue).DisposeWith(disposables); - this.Bind(ViewModel, vm => vm.IPAPIUrl, v => v.cmbIPAPIUrl.SelectedValue).DisposeWith(disposables); + this.Bind(ViewModel, vm => vm.IPAPIUrl, v => v.cmbIPAPIUrl.Text).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.notProxyLocalAddress, v => v.tognotProxyLocalAddress.IsChecked).DisposeWith(disposables); this.Bind(ViewModel, vm => vm.systemProxyAdvancedProtocol, v => v.cmbsystemProxyAdvancedProtocol.SelectedValue).DisposeWith(disposables);