[FancyZones] Fix stuck chrome tab when merging into existing window (#6931)

* Fix stuck Chrome tab when merging with existing window

* Rename struct fields
This commit is contained in:
stefansjfw
2020-10-01 15:38:24 +02:00
committed by GitHub
parent 8f81b9c662
commit 85f56f4ed8
2 changed files with 7 additions and 7 deletions

View File

@@ -52,9 +52,9 @@ private:
struct MoveSizeWindowInfo
{
// True if from the styles the window looks like a standard window
bool standardWindow = false;
bool isStandardWindow = false;
// True if the window is a top-level window that does not have a visible owner
bool noVisibleOwner = false;
bool hasNoVisibleOwner = false;
};
void WarnIfElevationIsRequired(HWND window) noexcept;