Skip to content

Commit

Permalink
(Fix: App) Fix #204
Browse files Browse the repository at this point in the history
  • Loading branch information
Medicean committed Aug 14, 2019
1 parent 72d9eae commit dfa5ceb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@

* 新增插件 [inject_und3ad](https://github.com/phantom11235/inject_und3ad) Author: @phantom11235

### 其它

* 修复 Linux Gnome 桌面环境下 minimize 时窗口消失问题 #204

## 2019/07/16 `v(2.1.4)`

### 核心模块
Expand Down
2 changes: 2 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ app.once('ready', () => {
event.preventDefault();
if (process.platform == 'darwin') {
app.hide();
} else if (process.platform == 'linux') {
return;
} else {
mainWindow.hide();
}
Expand Down

0 comments on commit dfa5ceb

Please sign in to comment.