diff options
Diffstat (limited to 'src/androidterm.c')
| -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 | ||