Swap swipe left and right

pull/147/head
M66B 6 years ago
parent afa16f2f9a
commit 291520772f

@ -304,16 +304,16 @@ public class FragmentMessages extends FragmentBase {
activity.setSwipeListener(new SwipeListener.ISwipeListener() {
@Override
public boolean onSwipeRight() {
if (previous != null)
navigate(previous);
return (previous != null);
if (next != null)
navigate(next);
return (next != null);
}
@Override
public boolean onSwipeLeft() {
if (next != null)
navigate(next);
return (next != null);
if (previous != null)
navigate(previous);
return (previous != null);
}
});

Loading…
Cancel
Save