Commit 533eb357 authored by Roberto Moura's avatar Roberto Moura Committed by Commit Bot

Call super from finalizeCollectionViewUpdates.

Add missing call to super from finalizeCollectionViewUpdates inside the
Tab Switcher Layout.

Bug: 1127604
Change-Id: I109b5bd16a64351231857f5447c940e54452d68b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2440609
Commit-Queue: Roberto Moura <mouraroberto@google.com>
Auto-Submit: Roberto Moura <mouraroberto@google.com>
Reviewed-by: default avatarGauthier Ambard <gambard@chromium.org>
Cr-Commit-Position: refs/heads/master@{#813177}
parent 8230a698
...@@ -117,6 +117,7 @@ ...@@ -117,6 +117,7 @@
- (void)finalizeCollectionViewUpdates { - (void)finalizeCollectionViewUpdates {
self.indexPathsOfDeletingItems = @[]; self.indexPathsOfDeletingItems = @[];
self.indexPathsOfInsertingItems = @[]; self.indexPathsOfInsertingItems = @[];
[super finalizeCollectionViewUpdates];
} }
@end @end
......
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