mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 04:35:57 +00:00
Disable inline WebView scroll
This commit is contained in:
parent
ce633798a3
commit
c5ced1e885
1 changed files with 10 additions and 0 deletions
|
@ -1433,6 +1433,16 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
getMeasuredWidth(),
|
getMeasuredWidth(),
|
||||||
Math.max(tvBody.getMinHeight(), getMeasuredHeight()));
|
Math.max(tvBody.getMinHeight(), getMeasuredHeight()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void scrollTo(int x, int y) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void computeScroll() {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
setupWebView(webView);
|
setupWebView(webView);
|
||||||
|
|
Loading…
Reference in a new issue