-
Notifications
You must be signed in to change notification settings - Fork 0
Fix layout-pass timing race in ScrollExpansion.updateHeight #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
78128f5
2135cf9
c632838
f3c93b5
4f7ce81
d5abaf4
5194478
79608ca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,6 +115,12 @@ final class AppKitContainer: NSHostingController<EmergeModifierView>, ScrollExpa | |
| } | ||
| var heightAnchor: NSLayoutConstraint? | ||
| var previousHeight: CGFloat? | ||
| var pendingContentSizeRetries: Int = 0 | ||
|
|
||
| func setNeedsAnotherLayoutPass() { | ||
| view.needsLayout = true | ||
| updateScrollViewHeight() | ||
| } | ||
|
Comment on lines
+130
to
+133
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Useful? React with 👍 / 👎. |
||
|
|
||
| public var rendered: ((EmergeRenderingMode?, Float?, Bool?, Bool?) -> Void)? { | ||
| didSet { didCall = false } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.