mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-16 21:50:34 +00:00
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
This commit is contained in:
parent
6de6656d1f
commit
4d1930cf74
@ -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),
|
gtk_container_propagate_draw (GTK_CONTAINER (notebook),
|
||||||
priv->cur_page->child,
|
priv->cur_page->child,
|
||||||
cr);
|
cr);
|
||||||
|
Loading…
Reference in New Issue
Block a user