From 676edf8a00d8a886ad03dcfbbb4d687e288a2d61 Mon Sep 17 00:00:00 2001 From: JieXu Date: Thu, 25 Sep 2025 07:35:32 +0800 Subject: [PATCH] Update MsgView.axaml.cs --- v2rayN/v2rayN.Desktop/Views/MsgView.axaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2rayN/v2rayN.Desktop/Views/MsgView.axaml.cs b/v2rayN/v2rayN.Desktop/Views/MsgView.axaml.cs index 9df2668e..52cc833d 100644 --- a/v2rayN/v2rayN.Desktop/Views/MsgView.axaml.cs +++ b/v2rayN/v2rayN.Desktop/Views/MsgView.axaml.cs @@ -12,8 +12,8 @@ namespace v2rayN.Desktop.Views; public partial class MsgView : ReactiveUserControl { private readonly ScrollViewer _scrollViewer; - private const int _maxLines = 320; // 实际保留的行数 - private const int _trimLines = 350; // 超过此阈值时裁剪 + private const int _maxLines = 320; + private const int _trimLines = 350; private int _lastShownLength = 0; public MsgView()