aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gtkutil.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c
index f3e89c82c66..46d3d1d93d2 100644
--- a/src/gtkutil.c
+++ b/src/gtkutil.c
@@ -1224,7 +1224,10 @@ xg_create_frame_widgets (struct frame *f)
1224 with regular X drawing primitives, so from a GTK/GDK point of 1224 with regular X drawing primitives, so from a GTK/GDK point of
1225 view, the widget is totally blank. When an expose comes, this 1225 view, the widget is totally blank. When an expose comes, this
1226 will make the widget blank, and then Emacs redraws it. This flickers 1226 will make the widget blank, and then Emacs redraws it. This flickers
1227 a lot, so we turn off double buffering. */ 1227 a lot, so we turn off double buffering.
1228 FIXME: gtk_widget_set_double_buffered is deprecated and might stop
1229 working in the future. We need to migrate away from combining
1230 X and GTK+ drawing to a pure GTK+ build. */
1228 gtk_widget_set_double_buffered (wfixed, FALSE); 1231 gtk_widget_set_double_buffered (wfixed, FALSE);
1229 1232
1230#if ! GTK_CHECK_VERSION (3, 22, 0) 1233#if ! GTK_CHECK_VERSION (3, 22, 0)