diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-13 20:29:55 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-13 20:29:55 +0800 |
commit | 9ff4f5f92f9db92f4b420430d6368feabc26490b (patch) | |
tree | 9224b4c3a19865803a6184413239d6f99f7467cc /embed | |
parent | 225e05938a6bff23249516da4d277d7d742e2283 (diff) | |
download | gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.gz gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.bz2 gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.lz gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.xz gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.tar.zst gsoc2013-epiphany-9ff4f5f92f9db92f4b420430d6368feabc26490b.zip |
Use favicons in bookmarks. Use titles for session history when possible.
2003-01-13 Marco Pesenti Gritti <marco@it.gnome.org>
* TODO:
* embed/ephy-favicon-cache.c: (ephy_favicon_cache_get):
* src/bookmarks/ephy-bookmarks-editor.c:
(ephy_bookmarks_editor_construct):
* src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_set_icon):
* src/bookmarks/ephy-bookmarks.h:
* src/bookmarks/ephy-new-bookmark.c: (ephy_new_bookmark_finalize),
(ephy_new_bookmark_add), (ephy_new_bookmark_init),
(ephy_new_bookmark_set_smarturl), (ephy_new_bookmark_set_icon):
* src/bookmarks/ephy-new-bookmark.h:
* src/bookmarks/ephy-node-view.c: (ephy_node_view_add_column),
(ephy_node_view_add_icon_column):
* src/bookmarks/ephy-node-view.h:
* src/bookmarks/ephy-tree-model-node.c:
(ephy_tree_model_node_get_column_type), (get_icon_pixbuf),
(ephy_tree_model_node_get_value),
(ephy_tree_model_node_column_get_type):
* src/bookmarks/ephy-tree-model-node.h:
* src/ephy-history-model.c: (ephy_history_model_get_value):
* src/ephy-navigation-button.c: (setup_back_or_forward_menu):
* src/ephy-tab.c: (ephy_tab_favicon_cb):
* src/window-commands.c: (window_cmd_bookmarks_add_default):
Use favicons in bookmarks.
Use titles for session history when possible.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-favicon-cache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index 7d76e50fe..3c34913d5 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -482,6 +482,8 @@ ephy_favicon_cache_get (EphyFaviconCache *cache, g_hash_table_lookup (cache->priv->icons_hash, url); + LOG ("Create pixbuf for %s", pix_file) + pixbuf = gdk_pixbuf_new_from_file (pix_file, NULL); if (pixbuf && |