[gtk+] Make notebook content redraw during drag
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Make notebook content redraw during drag
- Date: Fri, 30 May 2014 17:40:29 +0000 (UTC)
commit 4d1930cf74e99e346ec1b2bd31421e863e271358
Author: Matthias Clasen <mclasen redhat com>
Date: Fri May 30 13:38:26 2014 -0400
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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c
index 062690f..abad511 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);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]