mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-06-07 09:28:03 +08:00
[FancyZones] Fix a regression with Chrome tabs jamming FZ (#3338)
This commit is contained in:
parent
32b8a344a6
commit
e249bc5856
@ -522,6 +522,10 @@ ZoneWindow::ShowZoneWindow() noexcept
|
|||||||
std::thread{ [=]() {
|
std::thread{ [=]() {
|
||||||
AnimateWindow(window, m_showAnimationDuration, AW_BLEND);
|
AnimateWindow(window, m_showAnimationDuration, AW_BLEND);
|
||||||
InvalidateRect(window, nullptr, true);
|
InvalidateRect(window, nullptr, true);
|
||||||
|
if (m_windowMoveSize == nullptr)
|
||||||
|
{
|
||||||
|
HideZoneWindow();
|
||||||
|
}
|
||||||
} }.detach();
|
} }.detach();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user