diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2019-06-21 09:20:34 +0900 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2019-06-21 09:20:34 +0900 |
commit | 2da3305c3c335adcbc9e541b7c50e4e814df87d1 (patch) | |
tree | 827aa4495340ab0c8238479ce1f334904fd1da3a /src/xterm.c | |
parent | 5f485a2fc04053163a0f0b4a3019a141b8735068 (diff) | |
download | emacs-2da3305c3c335adcbc9e541b7c50e4e814df87d1.tar.gz emacs-2da3305c3c335adcbc9e541b7c50e4e814df87d1.tar.bz2 emacs-2da3305c3c335adcbc9e541b7c50e4e814df87d1.zip |
Fix broken display by frame maximization on cairo (Bug#23925)
* src/xterm.c (handle_one_xevent) [USE_CAIRO && USE_GTK]: Make calls to
x_cr_update_surface_desired_size coincide with those to xg_frame_resized.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index bc56e99513d..9bb0b83916c 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -8834,7 +8834,7 @@ handle_one_xevent (struct x_display_info *dpyinfo, if (f && FRAME_X_DOUBLE_BUFFERED_P (f)) font_drop_xrender_surfaces (f); unblock_input (); -#ifdef USE_CAIRO +#if defined USE_CAIRO && !defined USE_GTK if (f) x_cr_update_surface_desired_size (f, configureEvent.xconfigure.width, configureEvent.xconfigure.height); |