Fix scroll down button state.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 4f8508050a
commit d3d9e5dabc

@ -692,7 +692,7 @@ typedef NS_ENUM(NSInteger, MessagesRangeSizeMode) {
[self scrollToBottomAnimated:NO]; [self scrollToBottomAnimated:NO];
} }
[self ensureScrollDownButton]; [self updateLastVisibleTimestamp];
} }
- (void)scrollToUnreadIndicatorAnimated - (void)scrollToUnreadIndicatorAnimated
@ -711,8 +711,8 @@ typedef NS_ENUM(NSInteger, MessagesRangeSizeMode) {
animated:YES]; animated:YES];
} }
} }
[self ensureScrollDownButton]; [self updateLastVisibleTimestamp];
} }
- (void)resetContentAndLayout - (void)resetContentAndLayout
@ -2928,7 +2928,6 @@ typedef NS_ENUM(NSInteger, MessagesRangeSizeMode) {
[super viewDidLayoutSubviews]; [super viewDidLayoutSubviews];
[self updateLastVisibleTimestamp]; [self updateLastVisibleTimestamp];
[self ensureScrollDownButton];
} }
- (void)createScrollDownButton - (void)createScrollDownButton
@ -4156,7 +4155,7 @@ typedef NS_ENUM(NSInteger, MessagesRangeSizeMode) {
[self scrollToBottomImmediately]; [self scrollToBottomImmediately];
} }
[self ensureScrollDownButton]; [self updateLastVisibleTimestamp];
} }
- (void)scrollToBottomImmediately - (void)scrollToBottomImmediately
@ -4246,7 +4245,7 @@ typedef NS_ENUM(NSInteger, MessagesRangeSizeMode) {
// and the "send" button if it isn't. // and the "send" button if it isn't.
[((OWSMessagesToolbarContentView *)self.inputToolbar.contentView)ensureEnabling]; [((OWSMessagesToolbarContentView *)self.inputToolbar.contentView)ensureEnabling];
[self ensureScrollDownButton]; [self updateLastVisibleTimestamp];
} }
#pragma mark - UIScrollViewDelegate #pragma mark - UIScrollViewDelegate

Loading…
Cancel
Save