Add a comment about an issue with tooltips

It is apparently difficult to place tooltips only for
GTK_TOOLBAR_ICONS. Plus, we would need to listen to events in case
the preferences change while the program is running, and the
"has-tooltip" property seems to have the side-effect of removing the
tooltip text entirely - which would not work for us.
This commit is contained in:
Pierre Pronchery 2016-09-15 01:30:51 +02:00
parent b2726a3d37
commit bd0f203dc7

View File

@ -75,6 +75,11 @@ GtkWidget * desktop_toolbar_create(DesktopToolbar * toolbar,
gtk_widget_add_accelerator(GTK_WIDGET(p->widget),
"clicked", accel, p->accel, p->modifier,
GTK_ACCEL_VISIBLE);
#if 0 /* GTK_CHECK_VERSION(2, 12, 0) */
/* XXX the default is returned instead of the configuration */
if(gtk_toolbar_get_style(GTK_TOOLBAR(ret)) == GTK_TOOLBAR_ICONS)
gtk_tool_item_set_tooltip_text(p->widget, p->name);
#endif
gtk_toolbar_insert(GTK_TOOLBAR(ret), p->widget, -1);
}
return ret;