Skip to content

Commit bed7f2a

Browse files
htcfreekjaimecbernardo
authored andcommitted
[PTRun]WindowWalker: remove IsCloaked check (#15943)
1 parent 73a6f76 commit bed7f2a

File tree

1 file changed

+6
-4
lines changed
  • src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components

1 file changed

+6
-4
lines changed

Diff for: src/modules/launcher/Plugins/Microsoft.Plugin.WindowWalker/Components/OpenWindows.cs

+6-4
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,12 @@ public bool WindowEnumerationCallBack(IntPtr hwnd, IntPtr lParam)
9292
{
9393
// 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.)
9494
// (If user asking to see these windows again we can add an optional plugin setting in the future.)
95-
if (!newWindow.IsCloaked)
96-
{
97-
windows.Add(newWindow);
98-
}
95+
// [@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.]
96+
// if (!newWindow.IsCloaked)
97+
// {
98+
windows.Add(newWindow);
99+
100+
// }
99101
}
100102

101103
return true;

0 commit comments

Comments
 (0)