[Xfce4-commits] <midori:master> Actually display the favicon in history list

Christian Dywan noreply at xfce.org
Tue Sep 6 01:28:01 CEST 2011


Updating branch refs/heads/master
         to a568b29c3853636ba8eb11a373fdd8e8d2561ac6 (commit)
       from 54251cc36844d39ae0212d8e82273d74890ca749 (commit)

commit a568b29c3853636ba8eb11a373fdd8e8d2561ac6
Author: André Stösel <andre at stoesel.de>
Date:   Thu Sep 1 23:39:24 2011 +0200

    Actually display the favicon in history list

 extensions/history-list.vala |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/extensions/history-list.vala b/extensions/history-list.vala
index a53bbb6..46ad5a4 100644
--- a/extensions/history-list.vala
+++ b/extensions/history-list.vala
@@ -115,18 +115,17 @@ namespace HistoryList {
             this.vbox.pack_start (this.hbox, true, true, 0);
 
             this.treeview = new Gtk.TreeView.with_model (store);
-            this.treeview.set_fixed_height_mode (true);
             sw.add (treeview);
 
             this.treeview.set_model (store);
             this.treeview.set ("headers-visible", false);
 
             this.treeview.insert_column_with_attributes (
-                TabTreeCells.TREE_CELL_PIXBUF, "Icon",
-                new CellRendererPixbuf (), "pixbuf", 0);
+                -1, "Icon",
+                new CellRendererPixbuf (), "pixbuf", TabTreeCells.TREE_CELL_PIXBUF);
             this.treeview.insert_column_with_attributes (
-                TabTreeCells.TREE_CELL_STRING, "Title",
-                new CellRendererText (), "text", 1);
+                -1, "Title",
+                new CellRendererText (), "text", TabTreeCells.TREE_CELL_STRING);
 
             Requisition requisition;
             int height;


More information about the Xfce4-commits mailing list