Fix action bar usability in vertical screen split.
This commit is contained in:
parent
f29f25822b
commit
5128438cfb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue