Made pull down to close more sensitive

This commit is contained in:
M66B 2020-07-21 18:46:03 +02:00
parent eb3420aacc
commit 10855265a4
1 changed files with 3 additions and 3 deletions

View File

@ -1322,14 +1322,14 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
decor.setOverScrollUpdateListener(new IOverScrollUpdateListener() {
@Override
public void onOverScrollUpdate(IOverScrollDecor decor, int state, float offset) {
float height = decor.getView().getHeight() / DEFAULT_TOUCH_DRAG_MOVE_RATIO_FWD;
if (height != 0 && offset > height / 3)
float height = decor.getView().getHeight();
if (height != 0 &&
offset * DEFAULT_TOUCH_DRAG_MOVE_RATIO_FWD > height / 4)
handleAutoClose();
}
});
}
final String pkg = Helper.getOpenKeychainPackage(getContext());
Log.i("PGP binding to " + pkg);
pgpService = new OpenPgpServiceConnection(getContext(), pkg);