Update Android port

* java/org/gnu/emacs/EmacsView.java (onAttachedToWindow): Send
measured width and height in exposures again.
This commit is contained in:
Po Lu
2023-03-18 20:05:38 +08:00
parent 84ffda4be5
commit f3dd887d18

View File

@@ -574,7 +574,8 @@ public final class EmacsView extends ViewGroup
bitmapDirty = true;
/* Now expose the view contents again. */
EmacsNative.sendExpose (this.window.handle, 0, 0, 0, 0);
EmacsNative.sendExpose (this.window.handle, 0, 0,
measuredWidth, measuredHeight);
super.onAttachedToWindow ();
}