[gtk+] Speed up page insertion
- From: Paolo Borelli <pborelli src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Speed up page insertion
- Date: Sun, 26 Jun 2011 18:39:18 +0000 (UTC)
commit 399de111167c198a7d2ccbd459a2db7c6389181e
Author: Paolo Borelli <pborelli gnome org>
Date: Sun Jun 26 20:41:21 2011 +0200
Speed up page insertion
Make sure to call widget_set_child_visible(false) on all tabs except the
current before calling widget_set_parent.
gtk/gtknotebook.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c
index 7b44f82..5bf3de5 100644
--- a/gtk/gtknotebook.c
+++ b/gtk/gtknotebook.c
@@ -4560,6 +4560,10 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook,
gtk_notebook_menu_item_create (notebook,
g_list_find (priv->children, page));
+ /* child visible will be turned on by switch_page below */
+ if (priv->cur_page != page)
+ gtk_widget_set_child_visible (child, FALSE);
+
gtk_widget_set_parent (child, GTK_WIDGET (notebook));
if (tab_label)
gtk_widget_set_parent (tab_label, GTK_WIDGET (notebook));
@@ -4569,10 +4573,6 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook,
if (!priv->first_tab)
priv->first_tab = priv->children;
- /* child visible will be turned on by switch_page below */
- if (priv->cur_page != page)
- gtk_widget_set_child_visible (child, FALSE);
-
if (tab_label)
{
if (priv->show_tabs && gtk_widget_get_visible (child))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]