From 90e2b4478e852417de6e1683b49fe0e1b2e3a147 Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Mon, 19 Sep 2022 19:02:08 -0600 Subject: [PATCH] Removing LayoutBox, see https://github.com/phetsims/scenery/issues/1420 --- js/common/view/GridBox.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/common/view/GridBox.js b/js/common/view/GridBox.js index ddf060ec..c62c1203 100644 --- a/js/common/view/GridBox.js +++ b/js/common/view/GridBox.js @@ -5,8 +5,8 @@ * so cells are filled left-to-right, top-to-bottom. All cells have the same dimensions, and alignment * of children within the cells can be specified. * - * Unlike LayoutBox (and it subclasses HBox and VBox), adding/removing children does NOT change the contents - * of the grid, they will decorate the GridBox. To change the contents of the grid, use setContents. + * Adding/removing children does NOT change the contents of the grid, they will decorate the GridBox. To change the + * contents of the grid, use setContents. * * @author Brandon Li * @author Chris Malley (PixelZoom, Inc.)