From afc27123fb65aa16cf42fd0cc5f0ac12820f2e85 Mon Sep 17 00:00:00 2001 From: Maksym Veremeyenko Date: Mon, 27 Jun 2011 12:42:16 +0300 Subject: [PATCH] select first inserted item --- src/omnplay.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/omnplay.cpp b/src/omnplay.cpp index 18ea978..3b32b4c 100644 --- a/src/omnplay.cpp +++ b/src/omnplay.cpp @@ -629,7 +629,7 @@ static void omnplay_playlist_insert_items(omnplay_instance_t* app, int idx, omnplay_playlist_draw(app); /* select */ - path = gtk_tree_path_new_from_indices(idx + count, -1); + path = gtk_tree_path_new_from_indices(idx, -1); gtk_tree_selection_select_path(gtk_tree_view_get_selection(GTK_TREE_VIEW(app->playlist_grid)), path); gtk_tree_view_set_cursor(GTK_TREE_VIEW(app->playlist_grid), path, NULL, FALSE); gtk_tree_path_free(path); -- 1.7.4.4