Skip to content

Commit

Permalink
Fixed issue 88. Missing if statement for allWindows.
Browse files Browse the repository at this point in the history
  • Loading branch information
dboy591 authored and franglais125 committed Aug 3, 2018
1 parent 03b13a9 commit 54ea99c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utils.js
Expand Up @@ -63,7 +63,9 @@ function getWindow(forceSnapped) {
return window;
}

return window;
if (allWindows) {
return window;
}
}

return null;
Expand Down

0 comments on commit 54ea99c

Please sign in to comment.