Skip to content

Commit

Permalink
fix: follow-up on pr-104; minimized windows are not on another space
Browse files Browse the repository at this point in the history
  • Loading branch information
louis.pontoise authored and lwouis committed Jan 3, 2020
1 parent 51a193c commit 998c763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alt-tab-macos/logic/TrackedWindows.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class TrackedWindows {
private class func isSingleSpace() {
let firstSpaceIndex = list[0].spaceIndex
for window in list {
if window.spaceIndex != firstSpaceIndex {
if window.spaceIndex != nil && window.spaceIndex != firstSpaceIndex {
Spaces.singleSpace = false
return
}
Expand Down

0 comments on commit 998c763

Please sign in to comment.