From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60465) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xj45v-0007ed-Az for qemu-devel@nongnu.org; Tue, 28 Oct 2014 06:33:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xj45q-0005pO-Cf for qemu-devel@nongnu.org; Tue, 28 Oct 2014 06:33:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41124) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xj45q-0005pI-5u for qemu-devel@nongnu.org; Tue, 28 Oct 2014 06:33:38 -0400 From: Gerd Hoffmann Date: Tue, 28 Oct 2014 11:33:30 +0100 Message-Id: <1414492411-14924-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1414492411-14924-1-git-send-email-kraxel@redhat.com> References: <1414492411-14924-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 1/2] gtk: drop gtk_widget_set_double_buffered call List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann , Anthony Liguori Dunno why it is here. Removing it seems to have no ill side effects. It is depricated in 3.14+. In some cases it has no effect since 3.10 according to the docs: https://developer.gnome.org/gtk3/stable/GtkWidget.html#gtk-widget-set-double-buffered Signed-off-by: Gerd Hoffmann --- ui/gtk.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/gtk.c b/ui/gtk.c index 8e055da..9727dec 100644 --- a/ui/gtk.c +++ b/ui/gtk.c @@ -1666,7 +1666,6 @@ static GSList *gd_vc_gfx_init(GtkDisplayState *s, VirtualConsole *vc, GDK_LEAVE_NOTIFY_MASK | GDK_SCROLL_MASK | GDK_KEY_PRESS_MASK); - gtk_widget_set_double_buffered(vc->gfx.drawing_area, FALSE); gtk_widget_set_can_focus(vc->gfx.drawing_area, TRUE); vc->type = GD_VC_GFX; -- 1.8.3.1