Commit 5b8b9812 authored by Ian Hickson's avatar Ian Hickson

Merge pull request #1830 from Hixie/drag

Draggables were disappearing
parents 57e1d2e2 334fcbbf
...@@ -199,7 +199,9 @@ class _DraggableState<T> extends State<DraggableBase<T>> { ...@@ -199,7 +199,9 @@ class _DraggableState<T> extends State<DraggableBase<T>> {
feedback: config.feedback, feedback: config.feedback,
feedbackOffset: config.feedbackOffset, feedbackOffset: config.feedbackOffset,
onDragEnd: () { onDragEnd: () {
_activeCount -= 1; setState(() {
_activeCount -= 1;
});
} }
); );
} }
......
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