Skip to content

Commit 9007953

Browse files
committed
fix(android): prevent blink on reorder done
1 parent 76dbc95 commit 9007953

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/collectionview.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ export class CollectionView extends CollectionViewBase {
669669
}
670670
}
671671
public onSourceCollectionChanged(event: ChangedData<any>) {
672-
if (!this._listViewAdapter) {
672+
if (!this._listViewAdapter || this._dataUpdatesSuspended) {
673673
return;
674674
}
675675
if (Trace.isEnabled()) {

0 commit comments

Comments
 (0)