Tig 3 주 전
부모
커밋
1cf47f63d5
2개의 변경된 파일2개의 추가작업 그리고 20개의 파일을 삭제
  1. 0 0
      Terminal.Gui/Views/TextInput/TextView/PARTIAL-SPLIT-PLAN.md
  2. 2 20
      Terminal.Gui/Views/TextInput/TextView/TextView.Layout.cs

+ 0 - 0
Terminal.Gui/Views/TextInput/TextView/PARTIAL-SPLIT-PLAN.md


+ 2 - 20
Terminal.Gui/Views/TextInput/TextView/TextView.Layout.cs

@@ -9,9 +9,6 @@ public partial class TextView
     /// </summary>
     private void ConfigureLayout ()
     {
-        // Subscribe to ViewportChanged to sync internal scroll fields
-        ViewportChanged += TextView_ViewportChanged;
-
         // Vertical ScrollBar: AutoShow enabled by default as per requirements
         VerticalScrollBar.AutoShow = true;
 
@@ -21,28 +18,13 @@ public partial class TextView
 
     private void TextView_LayoutComplete (object? sender, LayoutEventArgs e)
     {
+        _topRow = Viewport.Y;
+        _leftColumn = Viewport.X;
         WrapTextModel ();
         UpdateContentSize ();
         AdjustScrollPosition ();
     }
 
-
-    private void TextView_ViewportChanged (object? sender, DrawEventArgs e)
-    {
-        // Sync internal scroll position fields with Viewport
-        // Only update if values actually changed to prevent infinite loops
-        if (_topRow != Viewport.Y)
-        {
-            _topRow = Viewport.Y;
-        }
-
-        if (_leftColumn != Viewport.X)
-        {
-            _leftColumn = Viewport.X;
-        }
-    }
-
-
     /// <summary>
     ///     INTERNAL: Adjusts the scroll position and cursor to ensure the cursor is visible in the viewport.
     ///     This method handles both horizontal and vertical scrolling, word wrap considerations, and syncs