소스 검색

removed comment

Tig 11 달 전
부모
커밋
b495afc448
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  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)); }