[gnome-builder] align back/forward list to views attached to stack



commit c14a1bfe4d2738ddd88bd18bdd442211b22b27a4
Author: Christian Hergert <christian hergert me>
Date:   Sat Mar 21 00:19:24 2015 -0700

    align back/forward list to views attached to stack

 src/views/gb-view-stack.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)
---
diff --git a/src/views/gb-view-stack.c b/src/views/gb-view-stack.c
index 8862984..c96b1c0 100644
--- a/src/views/gb-view-stack.c
+++ b/src/views/gb-view-stack.c
@@ -63,6 +63,7 @@ gb_view_stack_add (GtkContainer *container,
       if (controls)
         gtk_container_add (GTK_CONTAINER (self->controls_stack), controls);
       gtk_container_add (GTK_CONTAINER (self->stack), child);
+      gb_view_set_back_forward_list (GB_VIEW (child), self->back_forward_list);
       gtk_stack_set_visible_child (self->stack, child);
     }
   else
@@ -188,6 +189,9 @@ gb_view_stack_context_handler (GtkWidget  *widget,
 
   if (context)
     {
+      GList *children;
+      GList *iter;
+
       ide_set_weak_pointer (&self->context, context);
 
       back_forward = ide_context_get_back_forward_list (context);
@@ -207,6 +211,11 @@ gb_view_stack_context_handler (GtkWidget  *widget,
       g_object_bind_property (self->back_forward_list, "can-go-forward",
                               self->go_forward, "sensitive",
                               G_BINDING_SYNC_CREATE);
+
+      children = gtk_container_get_children (GTK_CONTAINER (self->stack));
+      for (iter = children; iter; iter = iter->next)
+        gb_view_set_back_forward_list (iter->data, self->back_forward_list);
+      g_list_free (children);
     }
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]