Commit 3fc70481 authored by Medicean's avatar Medicean

(Update: Module) windows 下单击鼠标左键 Tray Icon 显示/隐藏 主窗口 改为 「双击」

parent bd866fa7
...@@ -2,6 +2,14 @@ ...@@ -2,6 +2,14 @@
> 有空会补补BUG、添添新功能。 > 有空会补补BUG、添添新功能。
> 同时也欢迎大家的参与!感谢各位朋友的支持! .TAT. > 同时也欢迎大家的参与!感谢各位朋友的支持! .TAT.
## `v(2.1.6)`
### 其它
* `jsp_custom_script_for_mysql` 提供 `AES` 编码解码示例
* `jsp_custom_script_for_mysql` 增加 Version 显示
* windows 下单击鼠标左键 Tray Icon 显示/隐藏 主窗口 改为 「双击」
## 2019/08/19 `v(2.1.5)` ## 2019/08/19 `v(2.1.5)`
### 核心模块 ### 核心模块
......
...@@ -289,8 +289,8 @@ class Menubar { ...@@ -289,8 +289,8 @@ class Menubar {
this this
.trayIcon .trayIcon
.on('click', () => { .on('double-click', () => {
if (process.platform == 'darwin') if (process.platform == 'darwin' || process.platform == 'linux')
return; return;
if (this.mainWindow.isVisible()) { if (this.mainWindow.isVisible()) {
this this
......
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