We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e898c commit a46a74fCopy full SHA for a46a74f
osx/ImageTransition/app/MyWindowController.rb
@@ -24,6 +24,12 @@ def init
24
@slideView.transitionToImage(@donPedro1)
25
@curSlide1 = true
26
27
+ dict = NSDictionary.dictionaryWithContentsOfFile("/System/Library/CoreServices/SystemVersion.plist")
28
+ if dict.objectForKey("ProductVersion") >= "10.9"
29
+ # http://stackoverflow.com/questions/19540070/adding-cifilter-to-calayer-under-mavericks
30
+ @slideView.layerUsesCoreImageFilters = true
31
+ end
32
+
33
self
34
end
35
0 commit comments