Remove braces

Co-Authored-By: Salman Ahmed <email@iisalman.me>
This commit is contained in:
Dean Herbert 2019-11-01 16:08:44 +09:00 committed by GitHub
parent daa0ebe2b5
commit 156d0ae9b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ public override void OnEntering(IScreen last)
public override bool OnExiting(IScreen next) public override bool OnExiting(IScreen next)
{ {
allCircles.ForEach(c => { c.ScaleTo(0, transition_time, Easing.OutSine); }); allCircles.ForEach(c => c.ScaleTo(0, transition_time, Easing.OutSine));
Background.ScaleTo(1f, transition_time / 4, Easing.OutQuint); Background.ScaleTo(1f, transition_time / 4, Easing.OutQuint);