Skip to content

Commit

Permalink
fix: increased threshold to create multiple columns
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Dec 21, 2021
1 parent 3cc9bbe commit 3d95c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/ui/Content.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
targets.forEach((b) => {
temp.appendChild(b.cloneNode(true));
}, 0);
const splitHeight = Math.max(temp.clientHeight, 500);
const splitHeight = Math.max(temp.clientHeight, 600);
temp.detach();
if (columns == 1) {
Expand Down

0 comments on commit 3d95c86

Please sign in to comment.