mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-10 04:30:11 +00:00
inspector: Cosmetic changes to the hierarchy tab
Put the interfaces below GInterface.
This commit is contained in:
parent
3869bdbc2b
commit
37eb5c08a4
@ -99,10 +99,18 @@ gtk_inspector_object_hierarchy_set_object (GtkInspectorObjectHierarchy *oh,
|
||||
}
|
||||
while ((type = g_type_parent (type)));
|
||||
|
||||
if (g_hash_table_size (interfaces) > 0)
|
||||
{
|
||||
gtk_tree_store_append (oh->priv->model, &iter, NULL);
|
||||
gtk_tree_store_set (oh->priv->model, &iter,
|
||||
COLUMN_OBJECT_NAME, "GInterface",
|
||||
-1);
|
||||
parent = iter;
|
||||
}
|
||||
g_hash_table_iter_init (&hit, interfaces);
|
||||
while (g_hash_table_iter_next (&hit, (gpointer *)&class_name, NULL))
|
||||
{
|
||||
gtk_tree_store_append (oh->priv->model, &iter, NULL);
|
||||
gtk_tree_store_append (oh->priv->model, &iter, &parent);
|
||||
gtk_tree_store_set (oh->priv->model, &iter,
|
||||
COLUMN_OBJECT_NAME, class_name,
|
||||
-1);
|
||||
|
@ -29,7 +29,7 @@
|
||||
<property name="enable-search">False</property>
|
||||
<child>
|
||||
<object class="GtkTreeViewColumn">
|
||||
<property name="title" translatable="yes">Object Hierarchy</property>
|
||||
<property name="title" translatable="yes">Class Hierarchy</property>
|
||||
<child>
|
||||
<object class="GtkCellRendererText">
|
||||
<property name="scale">0.8</property>
|
||||
|
Loading…
Reference in New Issue
Block a user