]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't attempt to disable double buffering in newer GTK+ versions
authorPhilipp Stephani <phst@google.com>
Sun, 27 Aug 2017 10:45:52 +0000 (12:45 +0200)
committerPhilipp Stephani <phst@google.com>
Sat, 23 Sep 2017 11:02:13 +0000 (13:02 +0200)
* src/gtkutil.c (xg_create_frame_widgets): Stop calling deprecated
function gtk_widget_set_double_buffered.

src/gtkutil.c

index b98b0d08e7a88c260fdec06c10620491befd9506..8ecbc5c91edbc219f687e9f51a73a62e585f2052 100644 (file)
@@ -1233,12 +1233,14 @@ xg_create_frame_widgets (struct frame *f)
   if (FRAME_EXTERNAL_TOOL_BAR (f))
     update_frame_tool_bar (f);
 
+#if ! GTK_CHECK_VERSION (3, 14, 0)
   /* We don't want this widget double buffered, because we draw on it
      with regular X drawing primitives, so from a GTK/GDK point of
      view, the widget is totally blank.  When an expose comes, this
      will make the widget blank, and then Emacs redraws it.  This flickers
      a lot, so we turn off double buffering.  */
   gtk_widget_set_double_buffered (wfixed, FALSE);
+#endif
 
 #if ! GTK_CHECK_VERSION (3, 22, 0)
   gtk_window_set_wmclass (GTK_WINDOW (wtop),