12 lines
188 B
JavaScript
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
|
|
}
|