Skip to content

Commit

Permalink
fix: 🐛 修复 macOS 窗口过小导致出现横向滚动条的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Oct 20, 2023
1 parent d0c6cae commit 8ee34ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
draft: true
prerelease: true
files: |
!dist-release/builder-debug.yml
!builder-debug.yml
dist-release/*.exe
dist-release/*.zip
dist-release/*.dmg
Expand Down
4 changes: 2 additions & 2 deletions electron/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ function createWindow() {
mainWindow = new BrowserWindow({
show: false,
icon,
minWidth: 1000,
minHeight: 700,
minWidth: 1200,
minHeight: 800,
autoHideMenuBar: true,
webPreferences: {
// nodeIntegration: true,
Expand Down

0 comments on commit 8ee34ca

Please sign in to comment.