increase storage capacity of kill window to 1024

This commit is contained in:
Kang Yu 2024-07-08 16:49:19 -07:00
parent 9c7c17a5b7
commit 74da136678

View file

@ -1486,7 +1486,7 @@ namespace PersistentWindows.Common
//limit deadApp size
foreach (var kid in deadApps[display_config].Keys)
{
if (lastKilledWindowId - kid > 50)
if (lastKilledWindowId - kid > 1024)
deadApps[display_config].Remove(kid);
break;
}