Skip to content

Commit

Permalink
fix: android emulator not showing because of blacklist (closes #444)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwouis committed Jul 20, 2020
1 parent bf7db19 commit 60bf384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic/Windows.swift
Expand Up @@ -103,7 +103,7 @@ class Windows {
!(Preferences.spacesToShow[App.app.shortcutIndex] == .active && window.spaceId != Spaces.currentSpaceId) &&
!(Preferences.screensToShow[App.app.shortcutIndex] == .showingAltTab && !isOnScreen(window, screen)) &&
(Preferences.showTabsAsWindows || !window.isTabbed) &&
!Preferences.dontShowBlacklist.contains(window.application.runningApplication.bundleIdentifier ?? "")
!(window.application.runningApplication.bundleIdentifier.flatMap { Preferences.dontShowBlacklist.contains($0) } ?? false)
}

static func isOnScreen(_ window: Window, _ screen: NSScreen) -> Bool {
Expand Down

0 comments on commit 60bf384

Please sign in to comment.