From 1b2d1b0b88318e615ca482677e79b696a5f2abcc Mon Sep 17 00:00:00 2001 From: Danny Beck Date: Tue, 14 Jan 2025 10:30:03 -0800 Subject: [PATCH] adjusts default window size and adds min window size --- src-tauri/tauri.conf.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 8b2086b..6c500fe 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -13,8 +13,10 @@ "windows": [ { "title": "project-dave", - "width": 800, - "height": 600 + "height": 1000, + "width": 1200, + "minHeight": 600, + "minWidth": 800 } ], "security": {