Reduced logging

This commit is contained in:
M66B 2024-01-22 20:43:27 +01:00
parent e08732dcbd
commit b770a39f17
1 changed files with 5 additions and 0 deletions

View File

@ -107,6 +107,11 @@ final class ViewAutoScroller extends AutoScroller {
if (VERBOSE) Log.v(TAG, "Running in background using event location @ " + mLastLocation);
if (mLastLocation == null) {
eu.faircode.email.Log.w("ViewAutoScroller.mLastLocation is null");
return;
}
// Compute the number of pixels the pointer's y-coordinate is past the view.
// Negative values mean the pointer is at or before the top of the view, and
// positive values mean that the pointer is at or after the bottom of the view. Note