Skip to content

Commit 40ae6d1

Browse files
committed
Fix: Window buttons not showing in About OpenComic (macOS only)
1 parent 24ba9ba commit 40ae6d1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1212

1313
##### 🐛 Bug Fixes
1414

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

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

scripts/opencomic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ function showAboutWindow()
709709
minWidth: 380,
710710
minHeight: 260,
711711
//resizable: false,
712-
modal: true,
712+
modal: (process.platform == 'darwin') ? false : true,
713713
parent: electronRemote.getCurrentWindow(),
714714
webPreferences: {
715715
contextIsolation: false,

0 commit comments

Comments
 (0)