summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2012-08-31 12:56:04 +0300
committerXan Lopez <xan@igalia.com>2012-08-31 14:49:21 +0200
commitd939d0a9a2efb8ad2141ce7d7f922434c40c37ee (patch)
tree50bc589755a916aa07b07d712f0c2262b1b52931
parent021c6f6203d242d60d3526d1097e0adb330d7563 (diff)
downloadepiphany-d939d0a9a2efb8ad2141ce7d7f922434c40c37ee.tar.gz
ephy-embed-shell: load the new thumbnail frame and use it in the overview store
-rw-r--r--embed/ephy-embed-shell.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/embed/ephy-embed-shell.c b/embed/ephy-embed-shell.c
index 99ed4f579..692962268 100644
--- a/embed/ephy-embed-shell.c
+++ b/embed/ephy-embed-shell.c
@@ -210,6 +210,7 @@ EphyFrecentStore *
ephy_embed_shell_get_frecent_store (EphyEmbedShell *shell)
{
GdkPixbuf *default_icon;
+ GdkPixbuf *frame;
g_return_val_if_fail (EPHY_IS_EMBED_SHELL (shell), NULL);
@@ -217,13 +218,16 @@ ephy_embed_shell_get_frecent_store (EphyEmbedShell *shell)
{
shell->priv->frecent_store = ephy_frecent_store_new ();
default_icon = ephy_embed_shell_get_overview_icon ("missing-thumbnail.png");
+ frame = ephy_embed_shell_get_overview_icon ("thumbnail-frame.png");
g_object_set (shell->priv->frecent_store,
"history-service",
ephy_embed_shell_get_global_history_service (shell),
"history-length", 10,
"default-icon", default_icon,
+ "icon-frame", frame,
NULL);
g_object_unref (default_icon);
+ g_object_unref (frame);
}
return shell->priv->frecent_store;