Files
webtorrent-desktop/main/windows/util.js
2016-05-27 00:01:30 -07:00

12 lines
188 B
JavaScript

module.exports = {
focusWindow
}
function focusWindow (win) {
if (win.isMinimized()) {
// TODO: can this be removed?
win.restore()
}
win.show() // shows and gives focus
}