diff options
| author | 2026-01-13 15:28:19 +0800 | |
|---|---|---|
| committer | 2026-01-13 15:28:19 +0800 | |
| commit | b7e7f8de3d2200ef34510cda3601a50f62af798d (patch) | |
| tree | 9ee7841d41aa93735c465497dd9b7145389ddeab /src-tauri/tauri.conf.json | |
| parent | 94bbf11e4e37b880b111316f1af8006b05d38e2a (diff) | |
| download | DropOut-b7e7f8de3d2200ef34510cda3601a50f62af798d.tar.gz DropOut-b7e7f8de3d2200ef34510cda3601a50f62af798d.zip | |
feat: enhance window dimensions and layout in the application
Diffstat (limited to 'src-tauri/tauri.conf.json')
| -rw-r--r-- | src-tauri/tauri.conf.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2192fab..fc96188 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -12,9 +12,11 @@ "windows": [ { "title": "Minecraft DropOut Launcher", - "width": 375, - "height": 300, - "resizable": false + "width": 1024, + "height": 768, + "minWidth": 800, + "minHeight": 600, + "resizable": true } ], "security": { |