Skip to content

Commit

Permalink
Merge branch 'release-1.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
markormesher committed May 28, 2017
2 parents 780447a + 4f6bbb1 commit 9253a8c
Show file tree
Hide file tree
Showing 5 changed files with 10,827 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ buildscript {
}

def version = new Properties()
version['code'] = 10
version['name'] = '1.3.0'
version['code'] = 11
version['name'] = '1.3.1'

def secrets = getSecrets()

Expand Down
4 changes: 2 additions & 2 deletions fab/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ buildscript {
}

def version = new Properties()
version['code'] = 10
version['name'] = '1.3.0'
version['code'] = 11
version['name'] = '1.3.1'

apply plugin: 'me.tatarka.retrolambda'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,15 +492,19 @@ private void setSpeedDialCoverVisible(boolean visible) {
busyAnimatingSpeedDialCover = true;

// animate
coverView.setVisibility(VISIBLE);
coverView.animate()
.scaleX(visible ? 50F : 0F)
.scaleY(visible ? 50F : 0F)
//.alpha(visible ? 1F : 0F)
.alpha(visible ? 1F : 0F)
.setDuration(SPEED_DIAL_ANIMATION_DURATION)
.setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
busyAnimatingSpeedDialCover = false;
if (!visible) {
coverView.setVisibility(GONE);
}
}
});
}
Expand Down
File renamed without changes.
Loading

0 comments on commit 9253a8c

Please sign in to comment.