mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-12 13:35:39 +02:00
add comment on runtime fix
This commit is contained in:
parent
a9d14eee07
commit
a09f07b17a
1 changed files with 5 additions and 2 deletions
|
@ -294,10 +294,13 @@ namespace Ninjacrab.PersistentWindows.Common
|
||||||
applicationDisplayMetric = new ApplicationDisplayMetrics
|
applicationDisplayMetric = new ApplicationDisplayMetrics
|
||||||
{
|
{
|
||||||
HWnd = window.HWnd,
|
HWnd = window.HWnd,
|
||||||
|
|
||||||
|
// avoid cpu intensive operation
|
||||||
//ApplicationName = window.Process.ProcessName,
|
//ApplicationName = window.Process.ProcessName,
|
||||||
ApplicationName = "..",
|
|
||||||
//ProcessId = window.Process.Id,
|
//ProcessId = window.Process.Id,
|
||||||
|
ApplicationName = "",
|
||||||
ProcessId = 0,
|
ProcessId = 0,
|
||||||
|
|
||||||
WindowPlacement = windowPlacement
|
WindowPlacement = windowPlacement
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -361,7 +364,7 @@ namespace Ninjacrab.PersistentWindows.Common
|
||||||
}
|
}
|
||||||
|
|
||||||
//string applicationKey = string.Format("{0}-{1}", window.HWnd.ToInt64(), window.Process.ProcessName);
|
//string applicationKey = string.Format("{0}-{1}", window.HWnd.ToInt64(), window.Process.ProcessName);
|
||||||
string applicationKey = string.Format("{0}-{1}", window.HWnd.ToInt64(), "..");
|
string applicationKey = string.Format("{0}-{1}", window.HWnd.ToInt64(), "");
|
||||||
if (monitorApplications[displayKey].ContainsKey(applicationKey))
|
if (monitorApplications[displayKey].ContainsKey(applicationKey))
|
||||||
{
|
{
|
||||||
// looks like the window is still here for us to restore
|
// looks like the window is still here for us to restore
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue