diff options
author | Remy Raes <raes.remy@gmail.com> | 2022-09-23 01:21:57 +0200 |
---|---|---|
committer | Remy Raes <raes.remy@gmail.com> | 2022-09-23 01:21:57 +0200 |
commit | 089062ebd785aaf2b822baf183f116c9f23d4582 (patch) | |
tree | 2272b0ecc845c87e8e8a31986e08d88607094fdf /src-tauri | |
parent | efcb9bb65295f331f321851a4b256af6159df8b8 (diff) | |
download | FlightCore-089062ebd785aaf2b822baf183f116c9f23d4582.tar.gz FlightCore-089062ebd785aaf2b822baf183f116c9f23d4582.zip |
build: fix minimum window dimensions
Diffstat (limited to 'src-tauri')
-rw-r--r-- | src-tauri/tauri.conf.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index a1a83c2e..9789b5d0 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -62,7 +62,11 @@ { "fullscreen": false, "resizable": true, - "title": "FlightCore" + "title": "FlightCore", + "height": 600, + "minHeight": 600, + "width": 1000, + "minWidth": 1000 } ] } |