Skip to content

Commit 2163c7a

Browse files
committed
Update release notes
1 parent f557270 commit 2163c7a

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- [*] Shipping Labels: Validate custom package dimensions [https://github.com/woocommerce/woocommerce-ios/pull/15925]
1515
- [*] Shipping Labels: Show UPS TOS modal in full length for better accessibility. [https://github.com/woocommerce/woocommerce-ios/pull/15926]
1616
- [*] Shipping Labels: Optimize data loading on purchase form [https://github.com/woocommerce/woocommerce-ios/pull/15919]
17+
- [*] Shipping Labels: Fixed UI glitch on the bottom sheet of the purchase form. [https://github.com/woocommerce/woocommerce-ios/pull/15940]
1718
- [internal] Optimized assets for app size reduction [https://github.com/woocommerce/woocommerce-ios/pull/15881]
1819

1920
22.8

WooCommerce/Classes/ViewRelated/ReusableViews/SwiftUI Components/ExpandableBottomSheet.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ struct ExpandableBottomSheet<AlwaysVisibleContent, ExpandableContent>: View wher
159159
)
160160
.background(Color(.listForeground(modal: false)))
161161
.onReceive(NotificationCenter.default.publisher(for: UIApplication.didBecomeActiveNotification)) { _ in
162+
/// When user swipes to move the app to the background, the drag gesture is started but never finishes.
163+
/// This workaround cancels the dragging when the app re-enters the foreground
164+
/// and fixes the glitch caused by the divider at the bottom of the scroll view.
162165
revealContentDuringDrag = false
163166
}
164167
}

0 commit comments

Comments
 (0)