diff options
Diffstat (limited to 'src/androidterm.c')
| -rw-r--r-- | src/androidterm.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/androidterm.c b/src/androidterm.c index 814af87819b..a6709ac8169 100644 --- a/src/androidterm.c +++ b/src/androidterm.c | |||
| @@ -676,6 +676,16 @@ handle_one_android_event (struct android_display_info *dpyinfo, | |||
| 676 | if (!f) | 676 | if (!f) |
| 677 | goto OTHER; | 677 | goto OTHER; |
| 678 | 678 | ||
| 679 | if (FRAME_TOOLTIP_P (f)) | ||
| 680 | { | ||
| 681 | if (FRAME_PIXEL_HEIGHT (f) != configureEvent.xconfigure.height | ||
| 682 | || FRAME_PIXEL_WIDTH (f) != configureEvent.xconfigure.width) | ||
| 683 | SET_FRAME_GARBAGED (f); | ||
| 684 | |||
| 685 | FRAME_PIXEL_HEIGHT (f) = configureEvent.xconfigure.height; | ||
| 686 | FRAME_PIXEL_WIDTH (f) = configureEvent.xconfigure.width; | ||
| 687 | } | ||
| 688 | |||
| 679 | int width = configureEvent.xconfigure.width; | 689 | int width = configureEvent.xconfigure.width; |
| 680 | int height = configureEvent.xconfigure.height; | 690 | int height = configureEvent.xconfigure.height; |
| 681 | 691 | ||