diff options
author | Xan Lopez <xan@gnome.org> | 2010-01-25 23:52:41 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2010-01-25 23:53:27 +0800 |
commit | 77a2ffcacd2adaeb1ed90bd649735157fa284993 (patch) | |
tree | 8d6ae0cca7534883528584f6addc0d03093e303b /lib/widgets | |
parent | 2a1790159cc2109817e7452edc8b8941b73e774a (diff) | |
download | gsoc2013-epiphany-77a2ffcacd2adaeb1ed90bd649735157fa284993.tar gsoc2013-epiphany-77a2ffcacd2adaeb1ed90bd649735157fa284993.tar.gz gsoc2013-epiphany-77a2ffcacd2adaeb1ed90bd649735157fa284993.tar.bz2 gsoc2013-epiphany-77a2ffcacd2adaeb1ed90bd649735157fa284993.tar.lz gsoc2013-epiphany-77a2ffcacd2adaeb1ed90bd649735157fa284993.tar.xz gsoc2013-epiphany-77a2ffcacd2adaeb1ed90bd649735157fa284993.tar.zst gsoc2013-epiphany-77a2ffcacd2adaeb1ed90bd649735157fa284993.zip |
ephy-location-entry: disable favicons in entry for release
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 0f0c5f216..4887f73e0 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -1253,11 +1253,16 @@ ephy_location_entry_set_completion (EphyLocationEntry *entry, g_signal_connect_after (completion, "action-activated", G_CALLBACK (action_activated_after_cb), entry); + /* FIXME: this works fine, but the favicons seem to be + * added-removed the view constantly, and the visual effect is + * very ugly */ +#if 0 cell = gtk_cell_renderer_pixbuf_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (completion), cell, FALSE); gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (completion), cell, "pixbuf", favicon_col); +#endif cell = gtk_cell_renderer_text_new (); g_object_set (cell, |