Skip to content

Commit

Permalink
Prevent number being swallow while dragging. (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
bzoz committed Nov 27, 2019
1 parent 8e8be50 commit ee1a1fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/fancyzones/lib/FancyZones.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ IFACEMETHODIMP_(bool) FancyZones::OnKeyDown(PKBDLLHOOKSTRUCT info) noexcept
// This allows you to cycle through ZoneSets while dragging a window
Trace::FancyZones::OnKeyDown(info->vkCode, win, false /*control*/, true /*inMoveSize*/);
CycleActiveZoneSet(info->vkCode);
return true;
return false;
}
return false;
}
Expand Down

0 comments on commit ee1a1fd

Please sign in to comment.