icon-browser: Show category descriptions as tooltips

No better place for them right now.
This commit is contained in:
Matthias Clasen 2014-08-02 13:55:44 +02:00
parent 29d756909d
commit ea1f9bff2d

View File

@ -173,6 +173,10 @@ add_context (IconBrowserWindow *win,
gtk_list_box_insert (GTK_LIST_BOX (win->context_list), row, -1); gtk_list_box_insert (GTK_LIST_BOX (win->context_list), row, -1);
/* set the tooltip on the list box row */
row = gtk_widget_get_parent (row);
gtk_widget_set_tooltip_text (row, description);
if (win->current_context == NULL) if (win->current_context == NULL)
win->current_context = c; win->current_context = c;
} }