Skip to content

Disappearance Transition Animation Fix

Latest
Compare
Choose a tag to compare
@aheze aheze released this 29 Apr 02:47
· 87 commits to main since this release

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.

extension Transaction: Equatable {
    public static func == (lhs: Transaction, rhs: Transaction) -> Bool {
        lhs.animation == rhs.animation
    }
}

Fixes #25, #27, and #33.