Browse Source

Remove stale TODO statements

tznind 2 years ago
parent
commit
e8df68c117
1 changed files with 0 additions and 3 deletions
  1. 0 3
      Terminal.Gui/Views/TileView.cs

+ 0 - 3
Terminal.Gui/Views/TileView.cs

@@ -588,7 +588,6 @@ namespace Terminal.Gui {
 		/// <returns></returns>
 		public bool IsRootTileView ()
 		{
-			// TODO: don't want to layout subviews since the parent recursively lays them all out
 			return parentTileView == null;
 		}
 
@@ -651,8 +650,6 @@ namespace Terminal.Gui {
 			for (int i = 0; i < visibleTiles.Length; i++) {
 				var tile = visibleTiles [i];
 
-				// TODO: Deal with lines being Visibility false
-
 				if (Orientation == Orientation.Vertical) {
 					tile.View.X = i == 0 ? bounds.X : Pos.Right (visibleSplitterLines [i - 1]);
 					tile.View.Y = bounds.Y;