summaryrefslogtreecommitdiff
path: root/gtk/gtkwindow.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2018-08-29 16:19:37 +0200
committerBenjamin Otte <otte@redhat.com>2018-09-16 18:50:17 +0200
commit05e752e0967220d171e1fe8e20e8308e6a67a214 (patch)
tree9fa38b0670ae0ed0bf1a161dc932635ce47f8a9c /gtk/gtkwindow.c
parent22370099832f509ecb6ecc4037d7eaed71ed9ef3 (diff)
downloadgtk+-05e752e0967220d171e1fe8e20e8308e6a67a214.tar.gz
inspector: Turn object tree into a GtkListBox
The code gets rid of the GtkTreeView and replaces it with a GtkListBox. Most of the logic is now done via GListModel subclasses. A big change is that this new list is now tracking updates itself and doesn't need to be manually updated. All code that used to cause rescans or add forgotten objects to the tree has been removed. If objects are missing from the object tree, the logic for tracking them needs to be added.
Diffstat (limited to 'gtk/gtkwindow.c')
-rw-r--r--gtk/gtkwindow.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index e2cc8525f6..cffe43e686 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -10797,7 +10797,6 @@ warn_response (GtkDialog *dialog,
static gboolean
update_debugging (gpointer data)
{
- gtk_inspector_window_rescan (inspector_window);
gtk_window_update_debugging_id = 0;
return G_SOURCE_REMOVE;
}