Skip to content

Commit

Permalink
feat(gui): Enforce minimum window size (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
binarybaron authored Nov 29, 2024
1 parent 3143a02 commit 13b3ecc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@
"windows": [
{
"title": "UnstoppableSwap",
"minWidth": 600,
"minHeight": 400,
"width": 800,
"height": 600
"height": 700,
"maxHeight": 900,
"maxWidth": 1200
}
],
"security": {
Expand Down Expand Up @@ -57,4 +61,4 @@
]
}
}
}
}

0 comments on commit 13b3ecc

Please sign in to comment.