Skip to content

Commit

Permalink
Fixed n000b mistake.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbutcher committed May 16, 2016
1 parent 69afa18 commit 2fb9a45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -157,7 +157,7 @@ public Animator createAnimator(final ViewGroup sceneRoot,
AnimUtils.getFastOutSlowInInterpolator(sceneRoot.getContext());
final long duration = getDuration();
final long halfDuration = duration / 2;
final long twoThirdsDuration = 2 / 3 * duration;
final long twoThirdsDuration = duration * 2 / 3;

if (!fromFab) {
// Force measure / layout the dialog back to it's orig bounds

0 comments on commit 2fb9a45

Please sign in to comment.