From 6c43a19fa114105dd5e638ac9e262ae412d4d9c1 Mon Sep 17 00:00:00 2001 From: Tagaishi Date: Thu, 28 Sep 2023 19:47:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84Allow=20user=20to=20make=20video=20?= =?UTF-8?q?stream=20smaller=20than=202*3=20(#1430)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/widgets/video/VideoStreamTile.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/video/VideoStreamTile.tsx b/src/widgets/video/VideoStreamTile.tsx index a3bbfc7c1..47331ba84 100644 --- a/src/widgets/video/VideoStreamTile.tsx +++ b/src/widgets/video/VideoStreamTile.tsx @@ -30,8 +30,8 @@ const definition = defineWidget({ }, }, gridstack: { - minWidth: 3, - minHeight: 2, + minWidth: 1, + minHeight: 1, maxWidth: 12, maxHeight: 12, },