[Windows] Fix modifier keys when using tablet input.
This commit is contained in:
parent
a17fba3f21
commit
ee76775792
1 changed files with 4 additions and 4 deletions
|
@ -2037,8 +2037,8 @@ LRESULT DisplayServerWindows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARA
|
|||
Ref<InputEventMouseMotion> mm;
|
||||
mm.instance();
|
||||
mm->set_window_id(window_id);
|
||||
mm->set_control(GetKeyState(VK_CONTROL) != 0);
|
||||
mm->set_shift(GetKeyState(VK_SHIFT) != 0);
|
||||
mm->set_control(GetKeyState(VK_CONTROL) < 0);
|
||||
mm->set_shift(GetKeyState(VK_SHIFT) < 0);
|
||||
mm->set_alt(alt_mem);
|
||||
|
||||
mm->set_pressure(windows[window_id].last_pressure);
|
||||
|
@ -2180,8 +2180,8 @@ LRESULT DisplayServerWindows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARA
|
|||
mm->set_tilt(Vector2((float)pen_info.tiltX / 90, (float)pen_info.tiltY / 90));
|
||||
}
|
||||
|
||||
mm->set_control((wParam & MK_CONTROL) != 0);
|
||||
mm->set_shift((wParam & MK_SHIFT) != 0);
|
||||
mm->set_control(GetKeyState(VK_CONTROL) < 0);
|
||||
mm->set_shift(GetKeyState(VK_SHIFT) < 0);
|
||||
mm->set_alt(alt_mem);
|
||||
|
||||
mm->set_button_mask(last_button_state);
|
||||
|
|
Loading…
Reference in a new issue