| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Disappearance Transition Animation Fix.tar.gz | 2022-04-29 | 19.2 MB | |
| Disappearance Transition Animation Fix.zip | 2022-04-29 | 19.3 MB | |
| README.md | 2022-04-29 | 450 Bytes | |
| Totals: 3 Items | 38.5 MB | 0 | |
Finally fixed this really annoying bug.
These 5 lines of code messed up dismissal transitions and animations. Since it's an extension, it even affected apps with Popovers installed even when you didn't import Popovers.
:::swift
extension Transaction: Equatable {
public static func == (lhs: Transaction, rhs: Transaction) -> Bool {
lhs.animation == rhs.animation
}
}
Fixes [#25], [#27], and [#33].