X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=shell%2Fev-sidebar-thumbnails.c;h=424d061df9b8a1000c95f39e0f12416595740f42;hb=ead6ec8b0cbdafc334fff0b3b5f9f79067af1e86;hp=7945874b28cb1c761d66b2cc6f784f66836e244d;hpb=525205819a52cbca4388175bf7e3973a9a3d7d6e;p=evince.git diff --git a/shell/ev-sidebar-thumbnails.c b/shell/ev-sidebar-thumbnails.c index 7945874b..424d061d 100644 --- a/shell/ev-sidebar-thumbnails.c +++ b/shell/ev-sidebar-thumbnails.c @@ -214,16 +214,12 @@ page_changed_cb (EvPageCache *page_cache, int page, EvSidebarThumbnails *sidebar) { + GtkTreeView *tree_view = GTK_TREE_VIEW (sidebar->priv->tree_view); GtkTreePath *path; - GtkTreeSelection *selection; path = gtk_tree_path_new_from_indices (page, -1); - selection = gtk_tree_view_get_selection - (GTK_TREE_VIEW (sidebar->priv->tree_view)); - - gtk_tree_selection_select_path (selection, path); - gtk_tree_view_scroll_to_cell (GTK_TREE_VIEW (sidebar->priv->tree_view), - path, NULL, FALSE, 0.0, 0.0); + gtk_tree_view_set_cursor (tree_view, path, NULL, FALSE); + gtk_tree_view_scroll_to_cell (tree_view, path, NULL, FALSE, 0.0, 0.0); gtk_tree_path_free (path); }