1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

fix focusing bug

This commit is contained in:
Dick Choi
2016-08-14 02:20:57 +09:00
parent b07fb92e5c
commit e30cfdf942
2 changed files with 18 additions and 7 deletions

View File

@@ -30,12 +30,21 @@ function toggleFinder () {
finderWindow.show()
}
} else {
if (!finderWindow.isMinimized()) {
finderWindow.minimize()
if (finderWindow.isVisible()) {
finderWindow.blur()
finderWindow.hide()
} else {
nodeIpc.of.node.emit('request-data')
finderWindow.restore()
finderWindow.show()
finderWindow.focus()
}
// if (!finderWindow.isMinimized()) {
// finderWindow.minimize()
// } else {
// nodeIpc.of.node.emit('request-data')
// finderWindow.restore()
// finderWindow.focus()
// }
}
}