mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[SHIMGVW] Check VK_CONTROL on ImageView_OnMouseWheel
CORE-19358
This commit is contained in:
parent
77ab709b61
commit
0faa1561a6
1 changed files with 2 additions and 1 deletions
|
@ -962,7 +962,8 @@ ImageView_OnMouseWheel(HWND hwnd, INT x, INT y, INT zDelta, UINT fwKeys)
|
|||
{
|
||||
if (zDelta != 0)
|
||||
{
|
||||
ZoomInOrOut(zDelta > 0);
|
||||
if (GetKeyState(VK_CONTROL) < 0)
|
||||
ZoomInOrOut(zDelta > 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue