diff options
| author | Po Lu | 2024-06-24 12:05:18 +0800 |
|---|---|---|
| committer | Po Lu | 2024-06-24 12:05:18 +0800 |
| commit | e11e6d0bbe5aa579e9723b1eab3e0c1abb08a9cd (patch) | |
| tree | 03bcaf83dc480d4701ac5cd07102bcf43c8117d0 /src | |
| parent | cb3d92da82d11967d728ddb1a0b5c2e8ca618e90 (diff) | |
| parent | 73a58329a6946f5abc62fee2647efba56cce236b (diff) | |
| download | emacs-e11e6d0bbe5aa579e9723b1eab3e0c1abb08a9cd.tar.gz emacs-e11e6d0bbe5aa579e9723b1eab3e0c1abb08a9cd.zip | |
Merge from savannah/emacs-30
73a58329a69 Fix omission of updates to child frames on Android
Diffstat (limited to 'src')
| -rw-r--r-- | src/androidterm.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/androidterm.c b/src/androidterm.c index 837cc50bfa1..4561f2d1df3 100644 --- a/src/androidterm.c +++ b/src/androidterm.c | |||
| @@ -1279,7 +1279,12 @@ handle_one_android_event (struct android_display_info *dpyinfo, | |||
| 1279 | { | 1279 | { |
| 1280 | expose_frame (f, event->xexpose.x, event->xexpose.y, | 1280 | expose_frame (f, event->xexpose.x, event->xexpose.y, |
| 1281 | event->xexpose.width, event->xexpose.height); | 1281 | event->xexpose.width, event->xexpose.height); |
| 1282 | show_back_buffer (f); | 1282 | |
| 1283 | /* Do not display the back buffer if F is yet being | ||
| 1284 | updated, as this might trigger premature bitmap | ||
| 1285 | reconfiguration. */ | ||
| 1286 | if (FRAME_ANDROID_COMPLETE_P (f)) | ||
| 1287 | show_back_buffer (f); | ||
| 1283 | } | 1288 | } |
| 1284 | } | 1289 | } |
| 1285 | 1290 | ||