From 20370c4538c9aafb8412fb8cccf514571040b2f8 Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 4 Sep 2024 18:08:21 +0100 Subject: [PATCH] Remove comment. --- Terminal.Gui/Views/Scroll/Scroll.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Terminal.Gui/Views/Scroll/Scroll.cs b/Terminal.Gui/Views/Scroll/Scroll.cs index c06987108..9439303ad 100644 --- a/Terminal.Gui/Views/Scroll/Scroll.cs +++ b/Terminal.Gui/Views/Scroll/Scroll.cs @@ -161,10 +161,6 @@ public class Scroll : View return base.OnMouseEvent (mouseEvent); } - // TODO: Move this into "ScrollSlider" and override it there. Scroll can then subscribe to _slider.LayoutComplete and call AdjustSlider. - // QUESTION: I've been meaning to add a "View.FrameChanged" event (fired from LayoutComplete only if Frame has changed). Should we do that as part of this PR? - // QUESTION: Note I *did* add "View.ViewportChanged" in a previous PR. - /// Virtual method called when has changed. Raises . protected virtual void OnPositionChanged (int position) { PositionChanged?.Invoke (this, new (in position)); }