From a43526f278ed9aab8cd586430691e743e88554c8 Mon Sep 17 00:00:00 2001 From: Gold872 Date: Fri, 22 Dec 2023 15:47:19 -0500 Subject: [PATCH] Decreased minimum size of list layout --- lib/widgets/tab_grid.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/widgets/tab_grid.dart b/lib/widgets/tab_grid.dart index 459eb4dd..412fae27 100644 --- a/lib/widgets/tab_grid.dart +++ b/lib/widgets/tab_grid.dart @@ -537,8 +537,8 @@ class TabGrid extends StatelessWidget { Settings.gridSize.toDouble() * 2, ), children: children, - minWidth: 128.0 * 2, - minHeight: 128.0 * 2, + minWidth: 128.0, + minHeight: 128.0, tabGrid: this, onDragCancel: _layoutContainerOnDragCancel, );