diff options
author | Ryan Lortie <desrt@desrt.ca> | 2014-07-07 14:36:57 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2014-07-07 14:46:28 -0400 |
commit | 4948516100abfbc0af8c8f16086f38c3b4c04715 (patch) | |
tree | b0d89b71b4ed5487fffcba5c6d813f23c7da4dce /gtk/gtkapplication.c | |
parent | cc1af0f71c1f9f6799a2992239f90293d6c37ac8 (diff) | |
download | gtk+-4948516100abfbc0af8c8f16086f38c3b4c04715.tar.gz |
GtkApplication: document icon path setup
https://bugzilla.gnome.org/show_bug.cgi?id=722092
Diffstat (limited to 'gtk/gtkapplication.c')
-rw-r--r-- | gtk/gtkapplication.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/gtkapplication.c b/gtk/gtkapplication.c index c79f80ea05..e77cdc490a 100644 --- a/gtk/gtkapplication.c +++ b/gtk/gtkapplication.c @@ -87,6 +87,12 @@ * It is also possible to provide the menus manually using * gtk_application_set_app_menu() and gtk_application_set_menubar(). * + * #GtkApplication will also automatically setup an icon search path for + * the default icon theme by appending "icons" to the resource base + * path. This allows your application to easily store its icons as + * resources. See gtk_icon_theme_add_resource_path() for more + * information. + * * ## A simple application ## {#gtkapplication} * * [A simple example](https://git.gnome.org/browse/gtk+/tree/examples/bp/bloatpad.c) |