Skip to content

Commit

Permalink
Fix dimming bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mars885 committed Mar 9, 2019
1 parent 27a9b24 commit 69d33fd
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1512,10 +1512,10 @@ public final void expand(boolean animate) {
mSuggestionsContainerLL.getMeasuredHeight(),
animate
);

// Requesting a full relayout, in order to apply the new size
requestLayout();
}

// Requesting a full relayout, in order to apply the new size
requestLayout();
}


Expand Down Expand Up @@ -1570,15 +1570,14 @@ public final void collapse(boolean animate) {
0,
duration
);

// Relayout related stuff
if(!animate) {
requestLayout();
} else {
postExitAnimationEndActionEvent(duration);
}
}

// Relayout related stuff
if(!animate) {
requestLayout();
} else {
postExitAnimationEndActionEvent(duration);
}
}


Expand Down

0 comments on commit 69d33fd

Please sign in to comment.