Selaa lähdekoodia

removed comment

Tig 11 kuukautta sitten
vanhempi
commit
b495afc448
1 muutettua tiedostoa jossa 0 lisäystä ja 4 poistoa
  1. 0 4
      Terminal.Gui/Views/Scroll/Scroll.cs

+ 0 - 4
Terminal.Gui/Views/Scroll/Scroll.cs

@@ -165,10 +165,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.
-
     /// <summary>Virtual method called when <see cref="Position"/> has changed. Raises <see cref="PositionChanged"/>.</summary>
     protected virtual void OnPositionChanged (int position) { PositionChanged?.Invoke (this, new (in position)); }