mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
[AOT] Fix for topmost resetting (#17392)
This commit is contained in:
@@ -394,6 +394,8 @@ void AlwaysOnTop::HandleWinHookEvent(WinHookEvent* data) noexcept
|
|||||||
auto iter = m_topmostWindows.find(data->hwnd);
|
auto iter = m_topmostWindows.find(data->hwnd);
|
||||||
if (iter != m_topmostWindows.end())
|
if (iter != m_topmostWindows.end())
|
||||||
{
|
{
|
||||||
|
// pin border again, in some cases topmost flag stops working: https://github.com/microsoft/PowerToys/issues/17332
|
||||||
|
PinTopmostWindow(data->hwnd);
|
||||||
AssignBorder(data->hwnd);
|
AssignBorder(data->hwnd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user