Skip to content
This repository has been archived by the owner on Nov 9, 2018. It is now read-only.

Commit

Permalink
Orientation change causes background to not be scrollable. Fixes #604
Browse files Browse the repository at this point in the history
This fixes a problem where if you have the history pane open and you
change the orientation, then the history list would no longer be
scrollable unless you touch the bubble.

Auditors: @KevinGrandon
  • Loading branch information
bbondy committed Nov 6, 2015
1 parent 3187da3 commit 6c21e44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ private void applyAlpha() {
mBottomMaskView.animate().alpha(mCurrentAlpha).setDuration(Constant.CANVAS_FADE_ANIM_TIME);
}

if (!mEnabled || (mCurrentAlpha == 0.0f && mContentViewY == (int)(mTargetY))) {
if (!mEnabled || mCurrentAlpha == 0.0f) {

try {
clearFocus();
Expand Down

0 comments on commit 6c21e44

Please sign in to comment.