Fix no horizontal scroll x for context menu for pages with horizontal scrolling

This commit is contained in:
lrorpilla 2023-01-09 17:31:30 +10:00
parent a42b0e4dfd
commit 4183b932af

View File

@ -1692,7 +1692,7 @@ final public class InAppWebView extends InputAwareWebView implements InAppWebVie
updateViewLayout( updateViewLayout(
floatingContextMenu, floatingContextMenu,
new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, curx, ((int) cury) + getScrollY()) new LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, curx + getScrollX(), ((int) cury) + getScrollY())
); );
mainLooperHandler.post(new Runnable() { mainLooperHandler.post(new Runnable() {