revert overrideSnapHotkeys logic after regression (#756)

This commit is contained in:
Enrico Giordani 2019-11-22 10:56:11 +01:00 committed by GitHub
parent 254474d12d
commit 4be84e035f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -210,7 +210,7 @@ IFACEMETHODIMP_(bool) FancyZones::OnKeyDown(PKBDLLHOOKSTRUCT info) noexcept
}
else if ((info->vkCode == VK_RIGHT) || (info->vkCode == VK_LEFT))
{
if (!m_settings->GetSettings().overrideSnapHotkeys)
if (m_settings->GetSettings().overrideSnapHotkeys)
{
// Win+Left, Win+Right will cycle through Zones in the active ZoneSet
Trace::FancyZones::OnKeyDown(info->vkCode, win, ctrl, false /*inMoveSize*/);