Fix vertical scroll/zoom for precision touchpad
Adds factor data for vertical mousewheel event, in line with horizontal mousewheel event
(cherry picked from commit 63ba15a518
)
This commit is contained in:
parent
0142a378c6
commit
8add8f4e58
1 changed files with 5 additions and 5 deletions
|
@ -895,11 +895,12 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
if (!motion)
|
||||
return 0;
|
||||
|
||||
if (motion > 0)
|
||||
if (motion > 0) {
|
||||
mb->set_button_index(BUTTON_WHEEL_UP);
|
||||
else
|
||||
} else {
|
||||
mb->set_button_index(BUTTON_WHEEL_DOWN);
|
||||
|
||||
}
|
||||
mb->set_factor(fabs((double)motion / (double)WHEEL_DELTA));
|
||||
} break;
|
||||
case WM_MOUSEHWHEEL: {
|
||||
mb->set_pressed(true);
|
||||
|
@ -909,11 +910,10 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||
|
||||
if (motion < 0) {
|
||||
mb->set_button_index(BUTTON_WHEEL_LEFT);
|
||||
mb->set_factor(fabs((double)motion / (double)WHEEL_DELTA));
|
||||
} else {
|
||||
mb->set_button_index(BUTTON_WHEEL_RIGHT);
|
||||
mb->set_factor(fabs((double)motion / (double)WHEEL_DELTA));
|
||||
}
|
||||
mb->set_factor(fabs((double)motion / (double)WHEEL_DELTA));
|
||||
} break;
|
||||
case WM_XBUTTONDOWN: {
|
||||
mb->set_pressed(true);
|
||||
|
|
Loading…
Reference in a new issue