summaryrefslogtreecommitdiff
path: root/gtk/inspector/object-tree.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-10-31 21:13:18 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-10-31 21:13:18 -0400
commit3f3725d97b0b5dc5bdd33916ff685a6b9b5923eb (patch)
tree4c67a5679d78a38e3fd722b95c61486eb0ebe220 /gtk/inspector/object-tree.c
parent992c5f0dd68413ccab04f7f5d5863b13402ab3ca (diff)
downloadgtk+-3f3725d97b0b5dc5bdd33916ff685a6b9b5923eb.tar.gz
inspector: Refine object tree search
Behave similar to traditional treeview search, and center the row when moving between matches.
Diffstat (limited to 'gtk/inspector/object-tree.c')
-rw-r--r--gtk/inspector/object-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/inspector/object-tree.c b/gtk/inspector/object-tree.c
index b6018594bb..6f7d0bc513 100644
--- a/gtk/inspector/object-tree.c
+++ b/gtk/inspector/object-tree.c
@@ -210,7 +210,7 @@ move_search_to_row (GtkInspectorObjectTree *wt,
path = gtk_tree_model_get_path (GTK_TREE_MODEL (wt->priv->model), iter);
gtk_tree_view_expand_to_path (wt->priv->tree, path);
gtk_tree_selection_select_path (selection, path);
- gtk_tree_view_scroll_to_cell (wt->priv->tree, path, wt->priv->object_column, FALSE, 0.0, 0.0);
+ gtk_tree_view_scroll_to_cell (wt->priv->tree, path, NULL, TRUE, 0.5, 0.0);
gtk_tree_path_free (path);
}
@@ -853,7 +853,7 @@ gtk_inspector_object_tree_select_object (GtkInspectorObjectTree *wt,
path = gtk_tree_model_get_path (GTK_TREE_MODEL (wt->priv->model), &iter);
gtk_tree_view_expand_to_path (GTK_TREE_VIEW (wt->priv->tree), path);
gtk_tree_selection_select_iter (gtk_tree_view_get_selection (GTK_TREE_VIEW (wt->priv->tree)), &iter);
- gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (wt->priv->tree), path, NULL, FALSE, 0, 0);
+ gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (wt->priv->tree), path, NULL, TRUE, 0.5, 0);
gtk_tree_view_row_activated (GTK_TREE_VIEW (wt->priv->tree), path, NULL);
gtk_tree_path_free (path);
}