Commit dfa5ceb3 authored by Medicean's avatar Medicean

(Fix: App) Fix #204

parent 72d9eae7
......@@ -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)`
### 核心模块
......
......@@ -76,6 +76,8 @@ app.once('ready', () => {
event.preventDefault();
if (process.platform == 'darwin') {
app.hide();
} else if (process.platform == 'linux') {
return;
} else {
mainWindow.hide();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment