Merge tag '2.26.0.22'

pull/1/head
Matthew Chen 7 years ago
commit ade8dcd6ac

@ -38,7 +38,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>2.26.0.21</string>
<string>2.26.0.22</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LOGS_EMAIL</key>

@ -4115,7 +4115,9 @@ typedef enum : NSUInteger {
self.scrollDownButton.frame = newButtonFrame;
// Adjust content offset to prevent the presented keyboard from obscuring content.
if (wasScrolledToBottom) {
if (!self.viewHasEverAppeared) {
[self scrollToDefaultPosition];
} else if (wasScrolledToBottom) {
// If we were scrolled to the bottom, don't do any fancy math. Just stay at the bottom.
[self scrollToBottomAnimated:NO];
} else {

@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>2.26.0</string>
<key>CFBundleVersion</key>
<string>2.26.0.21</string>
<string>2.26.0.22</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>NSAppTransportSecurity</key>

@ -34,7 +34,7 @@ NS_ASSUME_NONNULL_BEGIN
_rootViewController = rootViewController;
self.reportedApplicationState = UIApplicationStateInactive;
self.reportedApplicationState = UIApplicationStateActive;
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(extensionHostDidBecomeActive:)

Loading…
Cancel
Save