diff --git a/Terminal.Gui/Views/TextInput/TextView/PARTIAL-SPLIT-PLAN.md b/Terminal.Gui/Views/TextInput/TextView/PARTIAL-SPLIT-PLAN.md deleted file mode 100644 index e69de29bb..000000000 diff --git a/Terminal.Gui/Views/TextInput/TextView/TextView.Layout.cs b/Terminal.Gui/Views/TextInput/TextView/TextView.Layout.cs index 2a4c13c7c..51a1f7e32 100644 --- a/Terminal.Gui/Views/TextInput/TextView/TextView.Layout.cs +++ b/Terminal.Gui/Views/TextInput/TextView/TextView.Layout.cs @@ -9,9 +9,6 @@ public partial class TextView /// 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; - } - } - - /// /// 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