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;
|
bool can_scroll = true;
|
||||||
if (dict.Get("canScroll", &can_scroll) && !can_scroll) {
|
if (dict.Get("canScroll", &can_scroll) && !can_scroll) {
|
||||||
out->hasPreciseScrollingDeltas = false;
|
out->hasPreciseScrollingDeltas = false;
|
||||||
out->setModifiers(out->modifiers() | blink::WebInputEvent::ControlKey);
|
out->setModifiers(out->modifiers() & ~blink::WebInputEvent::ControlKey);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue