diff options
Diffstat (limited to 'java')
| -rw-r--r-- | java/org/gnu/emacs/EmacsView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/org/gnu/emacs/EmacsView.java b/java/org/gnu/emacs/EmacsView.java index 88d17a255a2..10c1af9e19a 100644 --- a/java/org/gnu/emacs/EmacsView.java +++ b/java/org/gnu/emacs/EmacsView.java | |||
| @@ -574,7 +574,8 @@ public final class EmacsView extends ViewGroup | |||
| 574 | bitmapDirty = true; | 574 | bitmapDirty = true; |
| 575 | 575 | ||
| 576 | /* Now expose the view contents again. */ | 576 | /* Now expose the view contents again. */ |
| 577 | EmacsNative.sendExpose (this.window.handle, 0, 0, 0, 0); | 577 | EmacsNative.sendExpose (this.window.handle, 0, 0, |
| 578 | measuredWidth, measuredHeight); | ||
| 578 | 579 | ||
| 579 | super.onAttachedToWindow (); | 580 | super.onAttachedToWindow (); |
| 580 | } | 581 | } |