Commit 7243c562 authored by Hixie's avatar Hixie

Got the check the wrong way in the last patch.

TBR @abarth
parent d6f61e44
......@@ -101,7 +101,7 @@ class _PointerEventConverter {
// start sending us ADDED and REMOVED data points. In the meantime, we
// only support "down" moves, and ignore spurious moves.
// See also: https://github.com/flutter/flutter/issues/720
if (state != null)
if (state == null)
break;
assert(state.down);
Offset offset = position - state.lastPosition;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment