complete moving HotKeyWindow module to Common

This commit is contained in:
Kang Yu 2024-03-18 12:12:52 -07:00
parent 47d182fdf8
commit 5c26373d07
5 changed files with 19 additions and 23 deletions

View file

@ -623,12 +623,12 @@ namespace PersistentWindows.SystrayShell
static public void RecallLastKilledPosition()
{
pwp.RecallLastKilledPosition(pwp.GetForegroundWindow());
pwp.RecallLastKilledPosition(PersistentWindowProcessor.GetForegroundWindow());
}
static public void CenterWindow()
{
pwp.CenterWindow(pwp.GetForegroundWindow());
pwp.CenterWindow(PersistentWindowProcessor.GetForegroundWindow());
}
static public void PauseAutoRestore()
@ -731,7 +731,7 @@ namespace PersistentWindows.SystrayShell
public static IntPtr GetForegroundWindow()
{
return pwp.GetForegroundWindow();
return PersistentWindowProcessor.GetForegroundWindow();
}
}
}