X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.NUI%2Fsrc%2Finternal%2FFrameBroker%2FDefaultFrameBroker.cs;h=1665e1bde94d6fd6da095ab95896c8f3d46c943b;hb=f6482ba3a9b24352faf3ee7d128bd4ec96766aa9;hp=69716cdba0b7292faad668622351fb5b1060fa79;hpb=d560a664256acc5f1ef3b07ce3ff9298d29f0fad;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.NUI/src/internal/FrameBroker/DefaultFrameBroker.cs b/src/Tizen.NUI/src/internal/FrameBroker/DefaultFrameBroker.cs index 69716cd..1665e1b 100755 --- a/src/Tizen.NUI/src/internal/FrameBroker/DefaultFrameBroker.cs +++ b/src/Tizen.NUI/src/internal/FrameBroker/DefaultFrameBroker.cs @@ -105,14 +105,14 @@ namespace Tizen.NUI providerImage.Show(); int propertyCount = transition.AnimationDataList.Count; - animation = new Animation(transition.DurationMilliSeconds+80); + animation = new Animation(transition.DurationMilliSeconds + 80); for (int i = 0; i < propertyCount; i++) { animation.PropertyList.Add(transition.AnimationDataList[i].Property); animation.DestValueList.Add(transition.AnimationDataList[i].DestinationValue); - animation.StartTimeList.Add(80 +transition.AnimationDataList[i].StartTime); - animation.EndTimeList.Add(80 +transition.AnimationDataList[i].EndTime); + animation.StartTimeList.Add(80 + transition.AnimationDataList[i].StartTime); + animation.EndTimeList.Add(80 + transition.AnimationDataList[i].EndTime); } animation.PlayAnimateTo(providerImage); animation.Finished += Ani_Finished;