[Xfce4-commits] <midori:master> Always prepend history items to the top of the history panel

Christian Dywan noreply at xfce.org
Sat Dec 5 20:30:02 CET 2009


Updating branch refs/heads/master
         to 1c45254f23e795dc90143130c0a4314864e7f119 (commit)
       from 05d9c26e379e63783fd0ebbb98b6a8e335eec18f (commit)

commit 1c45254f23e795dc90143130c0a4314864e7f119
Author: Christian Dywan <christian at twotoasts.de>
Date:   Sat Dec 5 20:22:51 2009 +0100

    Always prepend history items to the top of the history panel

 panels/midori-history.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/panels/midori-history.c b/panels/midori-history.c
index fcacb62..b198e7a 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);



More information about the Xfce4-commits mailing list