Fix action bar usability in vertical screen split.

master
Alex Hart 2020-08-25 09:33:11 -03:00
parent f29f25822b
commit 5128438cfb
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ public final class ConversationReactionOverlay extends RelativeLayout {
selected = getSelectedIndexViaDownEvent(motionEvent);
if (selected == -1) {
if (motionEvent.getRawY() < toolbar.getHeight() + statusBarHeight) {
if (motionEvent.getY() < toolbar.getHeight() + statusBarHeight) {
isToolbarTouch = true;
return false;
}