mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
Fix tabbed browsing in epiphany. (#413664, Christian Persch)
2007-03-13 Matthias Clasen <mclasen@redhat.com> * gtk/gtknotebook.c (gtk_notebook_real_insert_page): Fix tabbed browsing in epiphany. (#413664, Christian Persch) svn path=/trunk/; revision=17505
This commit is contained in:
parent
825f4bc153
commit
500435f2f9
@ -1,3 +1,8 @@
|
||||
2007-03-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_real_insert_page):
|
||||
Fix tabbed browsing in epiphany. (#413664, Christian Persch)
|
||||
|
||||
2007-03-12 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtksizegroup.c (gtk_size_group_add_widget): Clarify
|
||||
|
@ -3971,9 +3971,6 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook,
|
||||
else
|
||||
g_object_ref_sink (page->menu_label);
|
||||
|
||||
/* child visible will be turned on by switch_page below */
|
||||
gtk_widget_set_child_visible (child, FALSE);
|
||||
|
||||
if (notebook->menu)
|
||||
gtk_notebook_menu_item_create (notebook,
|
||||
g_list_find (notebook->children, page));
|
||||
@ -3987,6 +3984,10 @@ gtk_notebook_real_insert_page (GtkNotebook *notebook,
|
||||
if (!notebook->first_tab)
|
||||
notebook->first_tab = notebook->children;
|
||||
|
||||
/* child visible will be turned on by switch_page below */
|
||||
if (notebook->cur_page != page)
|
||||
gtk_widget_set_child_visible (child, FALSE);
|
||||
|
||||
if (tab_label)
|
||||
{
|
||||
if (notebook->show_tabs && GTK_WIDGET_VISIBLE (child))
|
||||
|
Loading…
Reference in New Issue
Block a user