mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 16:16:33 +02:00
Made pull down to close more sensitive
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user