You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I call windowFilter:getWindows(), I'd expect it to return windows in order of their last focused time; for example, if I have the following window set (in order of most recently focused):
Space 1:
App 1 Window 1
App 1 Window 2
App 2 Window 1
Space 2:
App 3 Window 1
and I start with App 1 Window 1, and swipe to Space 2, then swipe back, I'd assume the window filter would give the following:
App 1 Window 1
App 3 Window 1
App 1 Window 2
App 2 Window 1
However, I instead get the windows grouped by app/space:
App 1 Window 1
App 1 Window 2
App 2 Window 1
App 3 Window 1
The works as expected if the windows are all in the same space. Is there any way to force the window filter to completely ignore spaces (or is this a bug?)
The text was updated successfully, but these errors were encountered:
I'm trying to use a cross-space window filter:
When I call
windowFilter:getWindows()
, I'd expect it to return windows in order of their last focused time; for example, if I have the following window set (in order of most recently focused):and I start with App 1 Window 1, and swipe to Space 2, then swipe back, I'd assume the window filter would give the following:
However, I instead get the windows grouped by app/space:
The works as expected if the windows are all in the same space. Is there any way to force the window filter to completely ignore spaces (or is this a bug?)
The text was updated successfully, but these errors were encountered: