mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-08 03:30:17 +00:00
When creating a widget path, use the widget type
No need to pull the type out of the css node - its our own type. This will let us stop setting the type on the css node later on.
This commit is contained in:
parent
3ca9a218ec
commit
0d78b67bca
@ -16361,7 +16361,7 @@ gtk_widget_path_append_for_widget (GtkWidgetPath *path,
|
||||
g_return_val_if_fail (path != NULL, 0);
|
||||
g_return_val_if_fail (GTK_IS_WIDGET (widget), 0);
|
||||
|
||||
pos = gtk_widget_path_append_type (path, gtk_css_node_get_widget_type (widget->priv->cssnode));
|
||||
pos = gtk_widget_path_append_type (path, G_OBJECT_TYPE (widget));
|
||||
gtk_widget_path_iter_set_object_name (path, pos, gtk_css_node_get_name (widget->priv->cssnode));
|
||||
|
||||
if (widget->priv->name)
|
||||
|
Loading…
Reference in New Issue
Block a user