diff options
author | Benjamin Otte <otte@redhat.com> | 2012-04-07 14:15:35 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-04-17 08:59:21 +0200 |
commit | 33f111a47c47f343ce549ea66bc8608f9c75ab7d (patch) | |
tree | 765c985a1f9aed11b463b72e88278914b5698903 /gtk/gtktoolbar.c | |
parent | 6ac754cdd1b5a273b0c0930866211c9b4bc450f4 (diff) | |
download | gtk+-33f111a47c47f343ce549ea66bc8608f9c75ab7d.tar.gz |
widget: Don't cache widget paths all the time
Add an internal API that allows GtkStyleContext to create a widget path
for the widget and with that bypassing gtk_widget_get_path() and that
function caching the path.
Diffstat (limited to 'gtk/gtktoolbar.c')
-rw-r--r-- | gtk/gtktoolbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c index be669008fb..a83f52ae39 100644 --- a/gtk/gtktoolbar.c +++ b/gtk/gtktoolbar.c @@ -3946,7 +3946,7 @@ gtk_toolbar_get_path_for_child (GtkContainer *container, g_list_foreach (children, add_widget_to_path, sibling_path); g_list_free (children); - path = gtk_widget_path_copy (gtk_widget_get_path (GTK_WIDGET (container))); + path = _gtk_widget_create_path (GTK_WIDGET (container)); if (gtk_widget_get_visible (child)) { vis_index = gtk_toolbar_get_visible_position (toolbar, child); |