aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 2f8e0775909..c64c17463cf 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -7897,7 +7897,13 @@ handle_one_xevent (struct x_display_info *dpyinfo,
7897 record_asynch_buffer_change (); 7897 record_asynch_buffer_change ();
7898 7898
7899#ifdef USE_GTK 7899#ifdef USE_GTK
7900 /* xg_frame_resized does the wrong thing with Gtk+ 3.20.3 or later.
7901 For earlier Gtk+ versions it is unclear whether
7902 xg_frame_resized is useful, so leave it in for now.
7903 See Bug#23144. */
7904# if ! GTK_CHECK_VERSION (3, 20, 3)
7900 xg_frame_resized (f, -1, -1); 7905 xg_frame_resized (f, -1, -1);
7906# endif
7901#endif 7907#endif
7902 } 7908 }
7903 goto OTHER; 7909 goto OTHER;