1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-08-15 08:00:31 +03:00

More fixes for mac

This commit is contained in:
Alisa Mylnikova 2020-05-29 12:24:22 +07:00
parent 9abede7354
commit e5d93909df
2 changed files with 12 additions and 0 deletions

View File

@ -99,4 +99,10 @@ extension UIScreen {
}
}
extension UIBezierPath {
var usesEvenOddFillRule: Bool {
return self.usesEvenOddFillRule
}
}
#endif

View File

@ -184,4 +184,10 @@ extension NSWindow {
}
}
extension NSBezierPath {
var usesEvenOddFillRule: Bool {
return self.windingRule == .evenOdd
}
}
#endif