diff options
author | Rémy Raes <contact@remyraes.com> | 2022-10-04 07:47:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 07:47:15 +0200 |
commit | 9964859f05e2137712ea7a0028a01eb6ce1f6de1 (patch) | |
tree | 4f49f66a2efae3e056dbd04c5d584e6c89e4e6a0 /src-tauri/tauri.conf.json | |
parent | 5c214925d78364ea05ef902eb2b5aa8d6810ebf5 (diff) | |
download | FlightCore-9964859f05e2137712ea7a0028a01eb6ce1f6de1.tar.gz FlightCore-9964859f05e2137712ea7a0028a01eb6ce1f6de1.zip |
feat: set minimum window dimensions to 600x300
Co-authored-by: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>
Diffstat (limited to 'src-tauri/tauri.conf.json')
-rw-r--r-- | src-tauri/tauri.conf.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2860d1a1..26946644 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -65,9 +65,9 @@ "decorations": false, "title": "FlightCore", "height": 600, - "minHeight": 600, + "minHeight": 300, "width": 1000, - "minWidth": 1000 + "minWidth": 600 } ] } |