From 4d1930cf74e99e346ec1b2bd31421e863e271358 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 30 May 2014 13:38:26 -0400 Subject: [PATCH] Make notebook content redraw during drag The extra condition here that caused the current child to not redraw during reordering was introduced in f383e1f1 during the port to ::draw, but was not explained in the commit message, and removing it has no obvious negative effect. https://bugzilla.gnome.org/show_bug.cgi?id=730767 --- gtk/gtknotebook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 062690f789..abad51139b 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -2611,7 +2611,7 @@ gtk_notebook_draw (GtkWidget *widget, } } - if (priv->cur_page && priv->operation != DRAG_OPERATION_REORDER) + if (priv->cur_page) gtk_container_propagate_draw (GTK_CONTAINER (notebook), priv->cur_page->child, cr);