Notify MidoriBrowser::tab property properly

This commit is contained in:
Christian Dywan 2009-09-29 20:49:30 +02:00
parent 7a5329a1e0
commit f530218492

View file

@ -4255,7 +4255,10 @@ gtk_notebook_switch_page_cb (GtkWidget* notebook,
if (browser->proxy_array)
katze_item_set_meta_integer (KATZE_ITEM (browser->proxy_array), "current",
midori_browser_get_current_page (browser));
g_object_freeze_notify (G_OBJECT (browser));
g_object_notify (G_OBJECT (browser), "uri");
g_object_notify (G_OBJECT (browser), "tab");
g_object_thaw_notify (G_OBJECT (browser));
_midori_browser_set_statusbar_text (browser, NULL);
_midori_browser_update_interface (browser);
@ -4271,7 +4274,10 @@ midori_browser_notebook_page_reordered_cb (GtkNotebook* notebook,
KatzeItem* item = midori_view_get_proxy_item (view);
katze_array_move_item (browser->proxy_array, item, page_num);
g_object_freeze_notify (G_OBJECT (browser));
g_object_notify (G_OBJECT (browser), "uri");
g_object_notify (G_OBJECT (browser), "tab");
g_object_thaw_notify (G_OBJECT (browser));
}
static gboolean