Skip to content

Commit

Permalink
fix: min height breaking app UI
Browse files Browse the repository at this point in the history
  • Loading branch information
dubisdev committed Apr 19, 2023
1 parent 73fd367 commit 0b9df85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"title": "RunMath",
"alwaysOnTop": true,
"fullscreen": false,
"height": 44,
"height": 46,
"resizable": false,
"width": 700,
"center": true,
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useBiggerScreen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const useBiggerScreen = () => {
appWindow.setSize(new LogicalSize(700, 88))

return () => {
appWindow.setSize(new LogicalSize(700, 44))
appWindow.setSize(new LogicalSize(700, 46))
}
}, [])
}

0 comments on commit 0b9df85

Please sign in to comment.