Attempt to workaround swipe/long press Android bug

pull/217/head
M66B 10 months ago
parent 9ea5917208
commit 8d9bc81d2c

@ -1197,6 +1197,8 @@ public class FragmentMessages extends FragmentBase
public void onLongPress(@NonNull MotionEvent e) {
if (!getLifecycle().getCurrentState().isAtLeast(Lifecycle.State.STARTED))
return;
if (swiping)
return;
int x = Math.round(e.getX());
int y = Math.round(e.getY());

Loading…
Cancel
Save