Fix tooltips.

2006-05-08  Matthias Clasen  <mclasen@redhat.com>

	* gtk/gtkuimanager.c (update_node): Fix tooltips.
This commit is contained in:
Matthias Clasen 2006-05-08 16:21:02 +00:00 committed by Matthias Clasen
parent 8a89668a0b
commit 8ade92495d
3 changed files with 13 additions and 4 deletions

View File

@ -1,5 +1,7 @@
2006-05-08 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkuimanager.c (update_node): Fix tooltips.
* configure.in: Require Pango 1.13.0
* gtk/gtknotebook.c:

View File

@ -1,5 +1,7 @@
2006-05-08 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkuimanager.c (update_node): Fix tooltips.
* configure.in: Require Pango 1.13.0
* gtk/gtknotebook.c:

View File

@ -2467,11 +2467,16 @@ update_node (GtkUIManager *self,
gtk_action_connect_proxy (action, info->proxy);
}
/* FIXME: we must trigger the notify::tooltip handler, since
* tooltips on toolitems can't be set before the toolitem
* is added to the toolbar.
/* FIXME: we must re-set the tooltip, since tooltips on toolitems can't be
* set before the toolitem is added to the toolbar.
*/
g_object_notify (G_OBJECT (action), "tooltip");
{
gchar *tooltip;
g_object_get (G_OBJECT (action), "tooltip", &tooltip, NULL);
g_object_set (G_OBJECT (action), "tooltip", tooltip, NULL);
g_free (tooltip);
}
g_signal_connect (info->proxy, "notify::visible",
G_CALLBACK (update_smart_separators), NULL);