pakerwreah / Calendr

Menu bar calendar for macOS
MIT License
1.08k stars 45 forks source link

Text scaling caused a memory leak in every label 🫠 #252

Closed pakerwreah closed 1 week ago

pakerwreah commented 1 week ago

Calling super inside an escaping closure is not a good idea. It will necessarily create a retain cycle, because capturing super weakly is not supported.

Xcode is a bitch and won't warn you either.

Because of that, we have to create an auxiliary method to set fonts on the base class.