From 1c45254f23e795dc90143130c0a4314864e7f119 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sat, 5 Dec 2009 20:22:51 +0100 Subject: [PATCH] Always prepend history items to the top of the history panel --- panels/midori-history.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panels/midori-history.c b/panels/midori-history.c index fcacb62e..b198e7a6 100644 --- a/panels/midori-history.c +++ b/panels/midori-history.c @@ -328,7 +328,7 @@ midori_history_add_item_cb (KatzeArray* array, if (array == history->array) { gtk_tree_store_insert_with_values (GTK_TREE_STORE (model), - &iter, NULL, G_MAXINT, 0, added_item, -1); + &iter, NULL, 0, 0, added_item, -1); return; } @@ -344,7 +344,7 @@ midori_history_add_item_cb (KatzeArray* array, GtkTreeIter child_iter; gtk_tree_store_insert_with_values (GTK_TREE_STORE (model), - &child_iter, &iter, G_MAXINT, 0, added_item, -1); + &child_iter, &iter, 0, 0, added_item, -1); break; } g_object_unref (item);