1
1
mirror of https://github.com/exyte/Macaw.git synced 2024-08-16 08:30:33 +03:00

Merge branch 'master' into tvos

This commit is contained in:
Robert Tolar Haining 2021-11-08 16:15:29 -05:00
commit 048a368faf
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
Pod::Spec.new do |s|
s.name = "Macaw"
s.version = "0.9.8"
s.version = "0.9.9"
s.summary = "Powerful and easy-to-use vector graphics library with SVG support written in Swift."
s.homepage = 'https://github.com/exyte/Macaw.git'

View File

@ -24,7 +24,7 @@ class MDisplayLink: MDisplayLinkProtocol {
displayLink = CADisplayLink(target: self, selector: #selector(updateHandler))
if #available(iOS 10.0, tvOS 10.0, *) {
displayLink?.preferredFramesPerSecond = 1
displayLink?.preferredFramesPerSecond = 60
} else {
displayLink?.frameInterval = 1
}