mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 12:46:47 +02:00
[PTRun]WindowWalker: remove IsCloaked check (#15943)
This commit is contained in:
@@ -92,10 +92,12 @@ namespace Microsoft.Plugin.WindowWalker.Components
|
|||||||
{
|
{
|
||||||
// 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.)
|
// 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 user asking to see these windows again we can add an optional plugin setting in the future.)
|
||||||
if (!newWindow.IsCloaked)
|
// [@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);
|
// {
|
||||||
}
|
windows.Add(newWindow);
|
||||||
|
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user