Skip to content
Snippets Groups Projects
Commit e409b3eb authored by Cam Saül's avatar Cam Saül
Browse files

Fix Mac App loading spinner direction :heart_eyes_cat: #1402

parent 4a885ec4
Branches
Tags
No related merge requests found
......@@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.12.0.7</string>
<string>0.13.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.12.0.7</string>
<string>0.13.0.0</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
......
......@@ -46,8 +46,8 @@
self.outerImageView.layer.anchorPoint = CGPointMake(0.5f, 0.5f);
CABasicAnimation *rotation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
rotation.fromValue = @0.0f;
rotation.toValue = @(M_PI * 2.0f);
rotation.fromValue = @(M_PI * 2.0f);
rotation.toValue = @0.0f;
rotation.duration = 2.0f;
rotation.repeatCount = HUGE_VALF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment