Skip to content

Commit

Permalink
Decreased minimum size of list layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Gold872 committed Dec 22, 2023
1 parent c09d1b5 commit a43526f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/widgets/tab_grid.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand Down

0 comments on commit a43526f

Please sign in to comment.