Skip to content

Commit

Permalink
[PTRun]WindowWalker: remove IsCloaked check (#15943)
Browse files Browse the repository at this point in the history
  • Loading branch information
htcfreek authored and jaimecbernardo committed Feb 2, 2022
1 parent 73a6f76 commit bed7f2a
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,12 @@ public bool WindowEnumerationCallBack(IntPtr hwnd, IntPtr lParam)
{
// To hide (not add) preloaded uwp app windows that are invisible to the user we check the cloak state in DWM to be "none". (Issue #13637.)
// (If user asking to see these windows again we can add an optional plugin setting in the future.)
if (!newWindow.IsCloaked)
{
windows.Add(newWindow);
}
// [@htcfreek, 2022-02-01: Removed the IsCloaked check to list windows from virtual desktops other than the current one again (#15887). In a second PR I will fix it re-implement it with improved code again.]
// if (!newWindow.IsCloaked)
// {
windows.Add(newWindow);

// }
}

return true;
Expand Down

0 comments on commit bed7f2a

Please sign in to comment.