Skip to content

Commit

Permalink
Fix: Window buttons not showing in About OpenComic (macOS only)
Browse files Browse the repository at this point in the history
  • Loading branch information
ollm committed Nov 19, 2023
1 parent 24ba9ba commit 40ae6d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

##### 🐛 Bug Fixes

- Remove button in library not showing
- Remove button in library not showing [`24ba9ba`](https://github.com/ollm/OpenComic/commit/24ba9ba787130c8f92b098cfefefdb7d37d18549)
- Window buttons not showing in About OpenComic (macOS only)

## [v1.0.0-beta.4](https://github.com/ollm/OpenComic/releases/tag/v1.0.0-beta.4) (17-10-2023)

Expand Down
2 changes: 1 addition & 1 deletion scripts/opencomic.js
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ function showAboutWindow()
minWidth: 380,
minHeight: 260,
//resizable: false,
modal: true,
modal: (process.platform == 'darwin') ? false : true,
parent: electronRemote.getCurrentWindow(),
webPreferences: {
contextIsolation: false,
Expand Down

0 comments on commit 40ae6d1

Please sign in to comment.