Fix typo when updating code
This commit is contained in:
parent
cbd3b054cb
commit
301ed2d66c
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ bool Converter<blink::WebMouseWheelEvent>::FromV8(
|
|||
bool can_scroll = true;
|
||||
if (dict.Get("canScroll", &can_scroll) && !can_scroll) {
|
||||
out->hasPreciseScrollingDeltas = false;
|
||||
out->setModifiers(out->modifiers() | blink::WebInputEvent::ControlKey);
|
||||
out->setModifiers(out->modifiers() & ~blink::WebInputEvent::ControlKey);
|
||||
}
|
||||
#endif
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue